Skip to content

Commit 2b2d77c

Browse files
committed
Hid the full-width toggle button on mobile devices
The layout is already full-width on mobile devices, so it makes no sense to present this option to the user.
1 parent 23c1979 commit 2b2d77c

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

_sass/minima/custom-styles.scss

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,12 @@ body {
7575
background: $button-hover-background-color;
7676
}
7777
}
78+
79+
#toggle-full-width {
80+
@media not screen and (min-width: $on-laptop) {
81+
display: none;
82+
}
83+
}
7884
}
7985

8086
.content {

0 commit comments

Comments
 (0)