View: Minor CSS adjustments for visuals

This commit is contained in:
Oskar Winkels 2020-12-05 19:40:54 +01:00
parent 34b1e2ad20
commit cd87a41940
1 changed files with 5 additions and 2 deletions

View File

@ -13,6 +13,8 @@
header { header {
height: calc(38px - 16px); height: calc(38px - 16px);
padding: 8px; padding: 8px;
white-space: nowrap;
overflow: hidden;
} }
main { main {
height: calc(100% - 38px); height: calc(100% - 38px);
@ -28,14 +30,15 @@
vertical-align: top; vertical-align: top;
} }
main > section.names, #nameheader { main > section.names, #nameheader {
width: 127px; width: 199px;
overflow: hidden; overflow: hidden;
border-right: 1px solid gray; border-right: 1px solid gray;
font-weight: bold; font-weight: bold;
text-transform: capitalize; text-transform: capitalize;
white-space: nowrap;
} }
main > section.times, #timeheader { main > section.times, #timeheader {
width: calc(100% - 128px); width: calc(100% - 200px);
overflow: hidden; overflow: hidden;
} }
.scroll { .scroll {