fix(search): stop the mobile sort dropdown overflowing the viewport #17

Merged
tudor merged 1 commits from fix/mobile-sort-select-overflow into main 2026-07-06 12:46:48 +00:00
Showing only changes of commit a00cbe9161 - Show all commits
+10
View File
@@ -369,6 +369,16 @@
.viewToggle {
justify-content: center;
flex-shrink: 0;
}
/* The sort <select> sizes to its widest option ("Highest Reading, Writing
& Maths %"), which overflows a phone viewport — beside the view toggle it
ran off the right edge. Let it flex into the remaining space and shrink;
the selected label truncates instead of pushing past the screen. */
.sortSelect {
flex: 1;
min-width: 0;
}
.mapViewContainer {