Added remaining elements to alert dialog.

This commit is contained in:
2024-05-19 05:07:35 +02:00
parent 715e5ac58a
commit 014758241c
22 changed files with 1210 additions and 30 deletions

View File

@@ -59,6 +59,13 @@ onMounted(() => emit('open'));
font-size: .9rem;
line-height: 1.5;
}
.dialog-error {
padding: .5rem 1rem;
color: var(--text-light);
background: var(--error);
font-weight: bold;
}
</style>
<style scoped>
@@ -72,14 +79,19 @@ onMounted(() => emit('open'));
top: 0;
left: 0;
z-index: 900;
box-sizing: border-box;
padding: 1rem;
background: var(--shadow-strong-10);
}
.dialog {
display: flex;
flex-direction: column;
border-radius: .25rem;
box-shadow: 0 0 3px var(--shadow);
overflow: hidden;
max-width: 100%;
max-height: 100%;
margin: 1rem;
}