unified header_title template values across dashboard applet destination pages; styled &/ added applet titles across all applets
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Disco DeDisco
2026-03-11 14:50:08 -04:00
parent 50ee983e27
commit 8807d31274
12 changed files with 52 additions and 21 deletions

View File

@@ -105,6 +105,7 @@
inset -0.125rem -0.125rem 0 rgba(var(--ninUser), 0.125),
inset 0.125rem 0.125rem 0 rgba(0, 0, 0, 0.8)
;
background-color: rgba(0, 0, 0, 0.125);
border-radius: 0.75rem;
padding: 1rem;
overflow: hidden;

View File

@@ -30,16 +30,14 @@ body.page-dashboard {
}
#id_applets_container {
#id_applet_my_lists {
#id_applet_my_notes {
padding: 1.25rem 1.5rem;
display: flex;
flex-direction: column;
.my-lists-main {
font-size: 1.6rem;
}
h2 { flex-shrink: 0; margin-bottom: 0.25rem; }
.my-lists-container {
.my-notes-container {
flex: 1;
min-height: 0;
overflow-y: auto;
@@ -58,6 +56,14 @@ body.page-dashboard {
}
}
#id_applet_wallet {
display: flex;
flex-direction: column;
gap: 0.25rem;
h2 { flex-shrink: 0; margin-bottom: 0; }
}
#id_applet_palette {
padding: 0;

View File

@@ -87,11 +87,23 @@ body.page-wallet {
.wallet-tokens {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-evenly;
flex-direction: column;
overflow: visible;
h2 {
flex-shrink: 0;
margin-bottom: 0;
}
.token-row {
flex: 1;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-evenly;
overflow: visible;
}
.token {
font-size: 1.5rem;
}