wip(app): settings

This commit is contained in:
Adam
2026-01-06 15:21:00 -06:00
parent e521fee002
commit 8bcbfd6396
16 changed files with 564 additions and 45 deletions

View File

@@ -30,6 +30,7 @@
flex-direction: column;
align-items: center;
justify-items: start;
overflow: visible;
[data-slot="dialog-content"] {
display: flex;
@@ -39,6 +40,14 @@
width: 100%;
max-height: 100%;
min-height: 280px;
overflow: auto;
/* Hide scrollbar */
scrollbar-width: none;
-ms-overflow-style: none;
&::-webkit-scrollbar {
display: none;
}
/* padding: 8px; */
/* padding: 8px 8px 0 8px; */
@@ -108,7 +117,7 @@
display: flex;
flex-direction: column;
flex: 1;
overflow-y: auto;
overflow: hidden;
&:focus-visible {
outline: none;
@@ -129,6 +138,11 @@
}
}
}
&[data-size="large"] [data-slot="dialog-container"] {
width: min(calc(100vw - 32px), 800px);
height: min(calc(100vh - 32px), 600px);
}
}
@keyframes overlayShow {