dev #22

Merged
JoeKung merged 3 commits from dev into main 2026-03-05 09:31:09 +01:00
Showing only changes of commit de9e473cca - Show all commits

View File

@@ -126,15 +126,39 @@
.actions { .actions {
display: flex; display: flex;
flex-direction: column; justify-content: space-between;
align-items: center;
gap: var(--space-3); gap: var(--space-3);
margin-top: var(--space-2);
@media (max-width: 640px) {
flex-direction: column;
align-items: stretch;
}
}
.actions-left,
.actions-right {
display: flex;
align-items: center;
}
.actions-right {
justify-content: flex-end;
@media (max-width: 640px) {
justify-content: flex-start;
}
} }
.limit-note { .limit-note {
font-size: 0.8rem; font-size: 0.8rem;
color: var(--color-text-muted); color: var(--color-text-muted);
text-align: center; text-align: right;
margin-top: calc(var(--space-2) * -1);
@media (max-width: 640px) {
text-align: left;
}
} }
.notes-section { .notes-section {