diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2020-05-12 21:27:39 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2020-05-12 21:27:39 +0200 |
commit | 31871a7a1ee2e7ae2cde4fe2847159fafff83380 (patch) | |
tree | 0dbe6b1c1e95d1aad3588551d79d1d85215dd3a2 /assets/css | |
parent | 80fc72a4a228720c38ee9a1049968c536cd17d00 (diff) |
css: Move sidebar up and let it scroll when needed.
Diffstat (limited to 'assets/css')
-rw-r--r-- | assets/css/screen.css | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/assets/css/screen.css b/assets/css/screen.css index 6debf02..841944c 100644 --- a/assets/css/screen.css +++ b/assets/css/screen.css @@ -183,12 +183,14 @@ a.message-anchor { display: none; position: fixed; right: 10px; - top: 30%; + top: 100px; background: white; border: 1px solid #ddd; border-radius: 6px; padding: .5em; z-index: 1; + max-height: 500px; + overflow-y: auto; } @media (min-width: 1200px) { |