Only Affects Help Table

table.table--help {
  td:nth-of-type(1) {
    color: var(--text-color);
    font-family: 'metropolis-semibold';
    min-width: 130px;
  }
    td:nth-of-type(2) {
/*Tourniquets text over 20VW*/
    max-width: 20vw;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}
This commit is contained in:
Electron - Mark Firth 2018-06-27 01:21:30 +10:00 committed by GitHub
parent 689fe25a72
commit c68eaba650
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,11 +13,6 @@ table.table,
tr td:last-of-type,
tr th:last-of-type {
padding-right: $spacing-vertical * 2/3;
/*Tourniquets text over 20VW*/
max-width: 20vw;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
thead {
@ -85,6 +80,13 @@ table.table--help {
font-family: 'metropolis-semibold';
min-width: 130px;
}
td:nth-of-type(2) {
/*Tourniquets text over 20VW*/
max-width: 20vw;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
}
table.table--transactions {