updated applet seed migration to include default applet sizes; other sundry styling refinements
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
Disco DeDisco
2026-03-06 19:14:53 -05:00
parent 42a9049c0a
commit 9aea1ccb56
5 changed files with 43 additions and 10 deletions

View File

@@ -28,6 +28,14 @@ body.page-dashboard {
font-size: 1.5rem;
cursor: pointer;
color: rgba(var(--secUser), 0.6);
display: inline-flex;
align-items: center;
justify-content: center;
width: 2rem;
height: 2rem;
border-radius: 50%;
background-color: rgba(var(--priUser), 0.85);
border: 0.15rem solid rgba(var(--secUser), 0.15);
}
#id_applet_menu {
@@ -61,4 +69,21 @@ body.page-dashboard {
grid-column: span var(--applet-cols, 12);
grid-row: span var(--applet-rows, 3);
}
}
@media (max-height: 500px) {
body.page-dashboard {
height: auto;
overflow-y: auto;
.container {
overflow: visible;
}
}
#id_dash_content,
#id_applets_container {
overflow: visible;
flex: none;
}
}