Adds scroll to overflowing dialog

This commit is contained in:
2025-02-19 14:07:42 -05:00
parent 2d0de59187
commit c2b2a6fcef
11 changed files with 23 additions and 18 deletions

View File

@@ -46,26 +46,31 @@
}
div.dialog {
@apply max-h-[90vh];
@apply place-self-center;
}
div.card {
@apply w-full max-w-[1024px];
@apply rounded-xl p-4;
@apply flex flex-col gap-4;
@apply bg-hSurface text-hOnSurface;
}
div.card-title {
@apply font-sans font-bold text-2xl;
@apply mb-8;
@apply p-2;
}
div.card-entry {
@apply mb-4;
div.card-content {
@apply flex flex-col gap-4;
@apply p-2;
@apply overflow-y-auto;
}
div.card-actions {
@apply flex flex-row gap-6 justify-end;
@apply p-2;
@apply flex flex-row gap-4 justify-end;
}
div.card-actions > * {