Skip to content

Commit 9b469d4

Browse files
authored
Fixes #51 - ensure Settings menu is full-width on iOS
This was previously not respecting the overrides for mobile we were using.
1 parent e53222e commit 9b469d4

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

public/css/style.css

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,11 +319,16 @@ span.control:hover {
319319
.App__homelink {
320320
display: none;
321321
}
322+
323+
/* Safari only fix to ensure Settings menu is full width */
324+
_::-webkit-:not(:root:root), .Settings {
325+
width: 100%;
326+
}
322327
}
323328

324329
/* Hide the Settings link on iPhone 5 */
325330
@media (device-height: 568px) and (device-width: 320px) and (-webkit-min-device-pixel-ratio: 2) {
326331
.App__settings {
327332
display: none;
328-
}
333+
}
329334
}

0 commit comments

Comments
 (0)