aboutsummaryrefslogtreecommitdiff
path: root/src/components/modal/modal.vue
diff options
context:
space:
mode:
authorHenry Jameson <me@hjkos.com>2022-06-22 00:30:10 +0300
committerHenry Jameson <me@hjkos.com>2022-06-22 00:30:10 +0300
commit872db65fd86aaa605789383e629321e32447a997 (patch)
tree498d4bba5b24a9dc7855809388dcea4a29389562 /src/components/modal/modal.vue
parent93293db038a864aafd0f6da3df15bc86e0370bfc (diff)
slight z-index refactor and attempt at organizing it
Diffstat (limited to 'src/components/modal/modal.vue')
-rw-r--r--src/components/modal/modal.vue5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/components/modal/modal.vue b/src/components/modal/modal.vue
index 9394efff..52d8d27e 100644
--- a/src/components/modal/modal.vue
+++ b/src/components/modal/modal.vue
@@ -22,6 +22,9 @@ export default {
default: false
}
},
+ provide: {
+ popoversZLayer: 'modals'
+ },
computed: {
classes () {
return {
@@ -35,7 +38,7 @@ export default {
<style lang="scss">
.modal-view {
- z-index: 2000;
+ z-index: var(--ZI_modals);
position: fixed;
top: 0;
left: 0;