Skip to content

Commit 526b738

Browse files
authored
Fix scrollbars hiding badge tabs (#494)
Occurs when desktop zoom is over 150%
1 parent 41d956e commit 526b738

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

play.css

+3-2
Original file line numberDiff line numberDiff line change
@@ -3771,16 +3771,17 @@ form .uiTheme {
37713771
place-items: end;
37723772
}
37733773

3774+
/* Collapse tabs into horizontal strip */
37743775
@media only screen and (orientation: portrait), only screen and (height < 768px) {
37753776
#badgeGameTabs, #badgeCategoryTabs {
37763777
flex-wrap: nowrap;
3777-
min-height: 38px;
3778+
min-height: 3.1rem;
37783779
overflow-x: scroll;
37793780
white-space: nowrap;
37803781
}
37813782

37823783
#badgeCategoryTabs {
3783-
min-height: 20px;
3784+
min-height: 2.2rem;
37843785
}
37853786

37863787
/* https://stackoverflow.com/questions/11387805/media-query-to-detect-if-device-is-touchscreen */

0 commit comments

Comments
 (0)