diff options
author | thinkpadmaster <a.scerba02@gmail.com> | 2023-07-05 21:55:07 -0500 |
---|---|---|
committer | thinkpadmaster <a.scerba02@gmail.com> | 2023-07-05 21:55:07 -0500 |
commit | 16176f33cae0f1421f257044a1c3cd1da6704468 (patch) | |
tree | d7eb083e74fb8331a0ba8fc26267d355d00aeec7 | |
parent | d97eefef2761a60136f67a2f3eddcc8087d558cb (diff) |
Fix hierarchy in hamburger nav
-rw-r--r-- | data/static/style.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/data/static/style.css b/data/static/style.css index cc89f3a..2a36919 100644 --- a/data/static/style.css +++ b/data/static/style.css @@ -278,7 +278,7 @@ img { .toggler{ /* ALWAYS KEEPING THE TOGGLER OR THE CHECKBOX ON TOP OF EVERYTHING : */ visibility: visible; - z-index:3; + z-index: 4; height: 40px; width: 40px; position: fixed; @@ -290,7 +290,7 @@ img { } .hamburger{ - z-index: 2; + z-index: 3; position: fixed; top: 15px; right: 15px; |