Compare commits

..

No commits in common. "1348bbb4d2ff40217ed4335a64353b513134d185" and "e8338a2f651ecd38270e9d481de275e15131a000" have entirely different histories.

View file

@ -1,6 +1,5 @@
<template> <template>
<span <span
class="dialog-container"
:class="{ 'dark-overlay': darkOverlay }" :class="{ 'dark-overlay': darkOverlay }"
@click.self.stop="onCancel()" @click.self.stop="onCancel()"
> >
@ -42,21 +41,14 @@
} }
} }
.dialog-container {
display: grid;
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
justify-content: center;
align-items: center;
justify-items: center;
}
.dialog-modal.panel { .dialog-modal.panel {
top: 0;
left: 50%;
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;
@ -79,14 +71,11 @@
border-top: 1px solid var(--border); border-top: 1px solid var(--border);
display: grid; display: grid;
grid-gap: 0.5em; grid-gap: 0.5em;
grid-template-columns: min-content; grid-auto-columns: minmax(max-content, 1fr);
grid-auto-columns: min-content;
grid-auto-flow: column dense;
height: auto; height: auto;
button { button {
width: auto; width: auto;
white-space: nowrap;
padding-left: 2em; padding-left: 2em;
padding-right: 2em; padding-right: 2em;
} }
@ -94,27 +83,27 @@
} }
#modal.-mobile { #modal.-mobile {
.dialog-container {
justify-content: stretch;
align-items: end;
justify-items: stretch;
}
.dialog-modal.panel { .dialog-modal.panel {
min-width: 100vw; top: auto;
} 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;
justify-content: flex-end; justify-content: flex-end;
grid-template-columns: 1fr; grid-auto-columns: initial;
grid-auto-columns: none; grid-auto-rows: 1fr;
grid-auto-rows: auto;
grid-auto-flow: row dense;
button { button {
grid-column: 1; grid-column: 1;
height: 2em; height: 2em;
}
} }
} }
} }