diff options
| author | Henry Jameson <me@hjkos.com> | 2022-06-22 00:30:10 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2022-06-22 00:30:10 +0300 |
| commit | 872db65fd86aaa605789383e629321e32447a997 (patch) | |
| tree | 498d4bba5b24a9dc7855809388dcea4a29389562 /src/components/popover/popover.vue | |
| parent | 93293db038a864aafd0f6da3df15bc86e0370bfc (diff) | |
slight z-index refactor and attempt at organizing it
Diffstat (limited to 'src/components/popover/popover.vue')
| -rw-r--r-- | src/components/popover/popover.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/popover/popover.vue b/src/components/popover/popover.vue index 0d37328e..f854515c 100644 --- a/src/components/popover/popover.vue +++ b/src/components/popover/popover.vue @@ -43,7 +43,7 @@ } .popover { - z-index: 90000; + z-index: var(--ZI_popover_override, var(--ZI_popovers)); position: fixed; min-width: 0; max-width: calc(100vw - 20px); @@ -87,7 +87,7 @@ text-align: left; list-style: none; max-width: 100vw; - z-index: 200; + z-index: var(--ZI_popover_override, var(--ZI_popovers)); white-space: nowrap; .dropdown-divider { |
