Further UI improvements

This commit is contained in:
Corey Blais
2026-04-09 18:11:55 -04:00
parent 5b0304ee93
commit 132b0c1202
4 changed files with 817 additions and 467 deletions
+53 -7
View File
@@ -393,14 +393,25 @@ textarea {
.dashboard-grid {
grid-template-columns: 320px 1fr;
align-items: start;
}
.forms-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
align-items: start;
}
.settings-grid {
align-items: start;
display: block;
column-count: 2;
column-gap: 1.5rem;
}
.settings-grid > .panel {
display: inline-grid;
width: 100%;
margin: 0 0 1.5rem;
break-inside: avoid;
}
.flock-member-panel,
@@ -412,6 +423,7 @@ textarea {
.panel {
border-radius: 28px;
padding: 1.5rem;
align-self: start;
}
.panel-header {
@@ -422,6 +434,18 @@ textarea {
margin-bottom: 1rem;
}
.pulse-panel .panel-header {
margin-bottom: 0.25rem;
}
.pulse-panel {
align-content: start;
}
.pulse-panel .summary-card {
align-content: start;
}
.button-row {
display: flex;
gap: 0.75rem;
@@ -433,12 +457,6 @@ textarea {
gap: 0.9rem;
}
.workspace-switcher-header {
display: grid;
gap: 0.2rem;
}
.workspace-switcher-header small,
.workspace-switcher-item small {
color: var(--muted);
}
@@ -681,6 +699,30 @@ textarea {
font-size: 1.05rem;
}
.summary-list {
display: grid;
gap: 0.2rem;
}
.summary-trend-row {
display: flex;
flex-wrap: wrap;
gap: 0.15rem;
align-items: baseline;
}
.summary-trend-name {
color: var(--ink);
}
.summary-trend-change.positive {
color: var(--accent-green);
}
.summary-trend-change.negative {
color: var(--accent-red);
}
.vet-visit-card span,
.vet-visit-card small {
color: var(--muted);
@@ -882,6 +924,10 @@ label {
padding: 1rem;
}
.settings-grid {
column-count: 1;
}
.side-nav {
position: static;
}