diff options
| author | Henry Jameson <me@hjkos.com> | 2022-08-23 01:49:22 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2022-08-23 01:49:22 +0300 |
| commit | 1a24f8b4c155edc3834ce901a167e463c609cf2f (patch) | |
| tree | d58fe139df115955ac45eff996bf6a625b7c647a /src/components | |
| parent | ef4ea4965327d2e94cd70a56bb9572f00219a29a (diff) | |
fix notices being under the navbar, also change offset to use variable
Diffstat (limited to 'src/components')
| -rw-r--r-- | src/components/global_notice_list/global_notice_list.vue | 4 |
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; |
