fix(dashboard): Sortierbuttons in der Mobile-Ansicht besser ausrichten

Die Sortiersteuerung nutzt auf schmalen Viewports eine horizontale Zeile mit gleichmäßig verteilten Touch-Zielen.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-05-31 14:55:42 +02:00
parent cc87b0f8e6
commit abb708c3d0
+25 -2
View File
@@ -2456,12 +2456,35 @@ html.scheme-dark .themed-select-option.is-selected {
word-break: break-word;
}
.dashboard-sort-bar {
flex-direction: row;
align-items: center;
gap: 10px;
}
.dashboard-sort-label {
flex-shrink: 0;
min-width: 4.75rem;
}
.dashboard-sort-row {
flex-direction: column;
flex: 1;
min-width: 0;
flex-wrap: nowrap;
gap: 12px;
}
.dashboard-sort-group {
flex: 1 1 100%;
flex: 1;
min-width: 0;
gap: 6px;
}
.dashboard-sort-btn {
flex: 1;
width: auto;
min-width: 44px;
height: 44px;
}
.logbooks-grid {