diff options
Diffstat (limited to 'web/source/css')
-rw-r--r-- | web/source/css/base.css | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/web/source/css/base.css b/web/source/css/base.css index 9289f18f8..cd65a617e 100644 --- a/web/source/css/base.css +++ b/web/source/css/base.css @@ -419,11 +419,6 @@ label { display: flex; flex-direction: column; - &.scrolling { - max-height: 40rem; - overflow: auto; - } - .header, .entry { padding: 0.5rem; } @@ -435,6 +430,17 @@ label { font-weight: bold; } + .entries { + display: flex; + flex-direction: column; + + &.scrolling { + height: 20rem; + max-height: 20rem; + overflow: auto; + } + } + input[type=checkbox] { margin-left: 0.5rem; } |