From bce7add2b4c9e8e0182db1ff6b2dadec2c14ca50 Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Thu, 15 Dec 2022 16:23:54 -0700 Subject: Fix login form errors not appearing Fixes #175 --- static/css/style.css | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'static/css') diff --git a/static/css/style.css b/static/css/style.css index 9b509b8..4160d26 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -221,6 +221,10 @@ header menu a.identity { width: 250px; } +body.no-sidebar header menu a.identity { + display: none; +} + header menu a.identity i { display: inline-block; vertical-align: middle; @@ -289,11 +293,13 @@ nav a i { .columns { display: flex; align-items: stretch; + justify-content: center; } .left-column { flex-grow: 1; width: 300px; + max-width: 700px; padding: 15px; } @@ -315,6 +321,10 @@ nav a i { border-radius: 0 0 5px 0; } +body.no-sidebar .right-column { + display: none; +} + .right-column h2 { background: var(--color-highlight); padding: 8px 10px; -- cgit v1.2.3