@use 'src/style/mixins.scss' as *;

.total {
  white-space: nowrap;
}

.address {
  overflow: hidden;
  text-overflow: ellipsis;
}

.container {
  font-size: 20px;

  &.selected,
  &.select:hover {
    position: relative;
    cursor: pointer;

    &::before {
      content: '';
      position: absolute;
      z-index: 0;

      left: 0;
      right: 0;

      height: 100%;

      @include tableHover;
    }
  }
}

Synonyms

pussy-ts/src/containers/sigma/components/cardUi/TitleCard/TitleCard.module.scss

Neighbours