Fix employees toolbar responsiveness on small screens

Enable flex-wrap on .employees-toolbar so controls wrap properly on mobile, and adjust media query to avoid conflicting layout rules.

Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
This commit is contained in:
Felix Kemmler
2026-08-10 22:40:40 +02:00
co-authored by Claude Haiku 4.5
parent e1fbfadd17
commit e98834d7de
+2 -2
View File
@@ -705,6 +705,7 @@ button.omsorg-button--danger {
display: flex; display: flex;
align-items: center; align-items: center;
gap: 14px; gap: 14px;
flex-wrap: wrap;
} }
.employees-search { .employees-search {
@@ -1015,8 +1016,7 @@ button.omsorg-button--danger {
} }
@media (max-width: 680px) { @media (max-width: 680px) {
.page-heading, .page-heading {
.employees-toolbar {
align-items: stretch; align-items: stretch;
flex-direction: column; flex-direction: column;
} }