diff options
Diffstat (limited to 'src/components/ConnectionTable.module.css')
| -rw-r--r-- | src/components/ConnectionTable.module.css | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/components/ConnectionTable.module.css b/src/components/ConnectionTable.module.css index 6697b58..80a8432 100644 --- a/src/components/ConnectionTable.module.css +++ b/src/components/ConnectionTable.module.css @@ -1,6 +1,7 @@ -.thead .tr { +.tr { display: grid; - grid-template-columns: repeat(13, max-content); + /* grid-template-columns: repeat(11, minmax(max-content, 1fr)); */ + grid-template-columns: repeat(11, minmax(max-content, auto)); } .th { @@ -9,10 +10,17 @@ background: var(--color-background); position: sticky; top: 0; + font-size: 0.8em; + text-align: center; + user-select: none; display: flex; align-items: center; justify-content: space-between; + + &:hover { + color: var(--color-text-highlight); + } } .td { |
