diff options
author | 2023-01-27 09:09:26 +0100 | |
---|---|---|
committer | 2023-01-27 09:09:26 +0100 | |
commit | 08f8feaec50c63ffd2f51d5589b3015b60e8f859 (patch) | |
tree | 97032442237bd149c128e29ff2da56afb4352a2e /web/source/css | |
parent | [chore] set max open / idle conns + conn max lifetime for both postgres and s... (diff) | |
download | gotosocial-08f8feaec50c63ffd2f51d5589b3015b60e8f859.tar.xz |
[feature/frontend] filterable local emoji list (#1385)
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; } |