diff options
author | Alex Scerba <alex@scerba.org> | 2024-09-23 20:25:40 -0400 |
---|---|---|
committer | Alex Scerba <alex@scerba.org> | 2024-10-29 14:15:43 -0400 |
commit | 2813df6f72a42859529948b7ff046183f810685c (patch) | |
tree | a3441951d2cce8054447cc887c516bb3423d6eb3 /static/assets | |
parent | 0d88558eb57275a7b89424143855985c487ab472 (diff) |
Fix z-index issue on nav bar
Diffstat (limited to 'static/assets')
-rw-r--r-- | static/assets/style.css | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/static/assets/style.css b/static/assets/style.css index a32debd..1f27ceb 100644 --- a/static/assets/style.css +++ b/static/assets/style.css @@ -63,6 +63,7 @@ header { padding: 1rem;
background-color: white;
border-bottom: 0.1rem solid black;
+ z-index: 100;
}
.logo-w-name {
@@ -311,7 +312,7 @@ blockquote { /* ALWAYS KEEPING THE TOGGLER OR THE CHECKBOX ON TOP OF EVERYTHING : */
visibility: visible;
display: block;
- z-index: 4;
+ z-index: 104;
height: 60px;
width: 60px;
position: fixed;
@@ -323,7 +324,7 @@ blockquote { }
.hamburger{
- z-index: 3;
+ z-index: 103;
position: fixed;
top: 0;
right: 1rem;
@@ -399,7 +400,7 @@ blockquote { position: fixed;
top: 0;
right: 0;
- z-index: 2;
+ z-index: 102;
background-color: white;
padding: 6rem 2rem 1rem 2rem;
align-items: center;
|