Wrap the transactions toolbar on phones

With the classification select beside the review toggle, the search
shrank to a sliver at phone widths; below 680px it now takes its own
full-width row.
This commit is contained in:
Lars Nolden
2026-09-14 12:42:23 +02:00
parent 0fd3c5c0dc
commit 83bb86bc93
+9
View File
@@ -1667,6 +1667,15 @@ footer span:first-child {
width: 238px;
transition: transform 0.2s;
}
/* With the classification select beside the review toggle, the search
would shrink to a sliver on phones; give it its own full-width row. */
.panel-toolbar {
flex-wrap: wrap;
}
.search {
flex-basis: 100%;
max-width: none;
}
.sidebar.open {
transform: translateX(0);
}