diff options
author | Andrew Godwin | 2022-12-15 16:23:54 -0700 |
---|---|---|
committer | Andrew Godwin | 2022-12-15 16:24:06 -0700 |
commit | bce7add2b4c9e8e0182db1ff6b2dadec2c14ca50 (patch) | |
tree | e41f158e59c15cbd312655f8d00f56d3935419a6 /static | |
parent | 1a7ffb4bff69aa32dc898c650215cba405031202 (diff) | |
download | takahe-bce7add2b4c9e8e0182db1ff6b2dadec2c14ca50.tar.gz takahe-bce7add2b4c9e8e0182db1ff6b2dadec2c14ca50.tar.bz2 takahe-bce7add2b4c9e8e0182db1ff6b2dadec2c14ca50.zip |
Fix login form errors not appearing
Fixes #175
Diffstat (limited to 'static')
-rw-r--r-- | static/css/style.css | 10 |
1 files changed, 10 insertions, 0 deletions
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; |