diff options
-rw-r--r-- | assets/css/screen.css | 5 | ||||
-rw-r--r-- | mumi/web/view/html.scm | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/assets/css/screen.css b/assets/css/screen.css index e8447d0..0558794 100644 --- a/assets/css/screen.css +++ b/assets/css/screen.css @@ -188,6 +188,7 @@ a.message-anchor { border: 1px solid #ddd; border-radius: 6px; padding: .5em; + padding-right: 1.5em; z-index: 1; max-height: 500px; overflow-y: auto; @@ -199,6 +200,10 @@ a.message-anchor { } } +#sidebar li { + width: max-content; +} + .conversation .avatar { display: none; } diff --git a/mumi/web/view/html.scm b/mumi/web/view/html.scm index 11fab72..cfc1018 100644 --- a/mumi/web/view/html.scm +++ b/mumi/web/view/html.scm @@ -72,7 +72,7 @@ (@ (rel "stylesheet") (media "screen") (type "text/css") - (href "/css/screen.css?202005130000")))) + (href "/css/screen.css?202005150000")))) (body ,@body (footer (@ (class "text-center")) (p "Copyright © 2016—2020 by the GNU Guix community." |