pussy-ts/src/components/Table/Table.module.scss

@import '../../style/mixins.scss';

.table {
  border-collapse: collapse;
  width: 100%;

  td,
  th {
    padding: 18px;
    text-align: center;
  }

  thead {
    color: #777777;

    th {
      font-weight: 400;
    }
  }

  tbody {
    color: #ffffff;

    tr {
      td {
        word-wrap: break-word;
      }

      &.rowSelected {
        box-shadow: inset 0px 0px 0px 1px #36d6ae;
      }

      &:hover {
        @include tableHover;
      }
    }
  }
}

Synonyms

cyb/src/components/Table/Table.module.scss
pussy-landing/src/components/xp/Table/Table.module.scss

Neighbours