style(dashboard): fix bunched buttons in card headers

This commit adds a proper flexbox layout to the '.card-actions' CSS class. Previously, action buttons (like Export and Refresh on the Analytics page) were bunching up because they lacked a flex container with appropriate gap and wrapping rules. It also updates the '.card-header' to wrap gracefully on smaller screens.
This commit is contained in:
2026-03-07 01:37:27 +00:00
parent 75e2967727
commit 0526304398
3 changed files with 11 additions and 2 deletions

View File

@@ -750,6 +750,15 @@ body {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 1rem;
}
.card-actions {
display: flex;
align-items: center;
gap: 0.5rem;
flex-wrap: wrap;
}
.card-title {