better centering

This commit is contained in:
Henry Jameson 2024-12-29 22:19:49 +02:00
parent d5d7582741
commit b593cadff8

View file

@ -1,5 +1,6 @@
<template> <template>
<span <span
class="dialog-container"
:class="{ 'dark-overlay': darkOverlay }" :class="{ 'dark-overlay': darkOverlay }"
@click.self.stop="onCancel()" @click.self.stop="onCancel()"
> >
@ -41,14 +42,21 @@
} }
} }
.dialog-modal.panel { .dialog-container {
display: grid;
position: fixed;
top: 0; top: 0;
left: 50%; bottom: 0;
left: 0;
right: 0;
justify-content: center;
align-items: center;
justify-items: center;
}
.dialog-modal.panel {
max-height: 80vh; max-height: 80vh;
max-width: 90vw; max-width: 90vw;
margin: 15vh auto;
position: fixed;
transform: translateX(-50%);
z-index: 2001; z-index: 2001;
cursor: default; cursor: default;
display: block; display: block;
@ -83,16 +91,15 @@
} }
#modal.-mobile { #modal.-mobile {
.dialog-container {
justify-content: stretch;
align-items: end;
justify-items: stretch;
}
.dialog-modal.panel { .dialog-modal.panel {
top: auto; min-width: 100vw;
left: 0; }
right: 0;
bottom: 0;
max-width: none;
transform: none;
width: 100vw;
margin: auto;
z-index: 2001;
.dialog-modal-footer { .dialog-modal-footer {
flex-direction: column; flex-direction: column;
@ -105,7 +112,6 @@
height: 2em; height: 2em;
} }
} }
}
} }
</style> </style>