aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenry Jameson <me@hjkos.com>2022-08-23 01:49:22 +0300
committerHenry Jameson <me@hjkos.com>2022-08-23 01:49:22 +0300
commit1a24f8b4c155edc3834ce901a167e463c609cf2f (patch)
treed58fe139df115955ac45eff996bf6a625b7c647a
parentef4ea4965327d2e94cd70a56bb9572f00219a29a (diff)
fix notices being under the navbar, also change offset to use variable
-rw-r--r--src/components/global_notice_list/global_notice_list.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/global_notice_list/global_notice_list.vue b/src/components/global_notice_list/global_notice_list.vue
index 09904761..d828b819 100644
--- a/src/components/global_notice_list/global_notice_list.vue
+++ b/src/components/global_notice_list/global_notice_list.vue
@@ -29,10 +29,10 @@
.global-notice-list {
position: fixed;
- top: 50px;
+ top: calc(var(--navbar-height) + 0.5em);
width: 100%;
pointer-events: none;
- z-index: var(--ZI_popovers);
+ z-index: var(--ZI_navbar_popovers);
display: flex;
flex-direction: column;
align-items: center;