summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander@sulfrian.net>2022-11-01 15:41:06 +0100
committerAlexander Sulfrian <alexander@sulfrian.net>2022-11-01 15:42:24 +0100
commit0cdc7e5412aee02f0d4b6149513ab2e0f0b90d0c (patch)
treef23d3724cea3636f9a749dd6c49ef5416d7a7761
parent4ee39b128d8a879a052393d8bcf15471135e6368 (diff)
downloadweb-0cdc7e5412aee02f0d4b6149513ab2e0f0b90d0c.tar.gz
web-0cdc7e5412aee02f0d4b6149513ab2e0f0b90d0c.tar.bz2
web-0cdc7e5412aee02f0d4b6149513ab2e0f0b90d0c.zip
css: Fix "position: absolute"
For absolute positioning "position: relative" is required in the parent element.
-rw-r--r--accounts/static/layout.css1
1 files changed, 1 insertions, 0 deletions
diff --git a/accounts/static/layout.css b/accounts/static/layout.css
index b6d8752..0901983 100644
--- a/accounts/static/layout.css
+++ b/accounts/static/layout.css
@@ -39,6 +39,7 @@ header h1 img {
}
#header-background {
+ position: relative;
background-color: #333;
width: 100%;
height: 3em;