File tree 3 files changed +18
-4
lines changed
3 files changed +18
-4
lines changed Original file line number Diff line number Diff line change @@ -217,7 +217,7 @@ table thead td {
217
217
# menu-bar i ,
218
218
# menu-bar .icon-button {
219
219
position : relative;
220
- margin : 0 10 px ;
220
+ margin : 0 8 px ;
221
221
z-index : 10 ;
222
222
line-height : 50px ;
223
223
cursor : pointer;
@@ -227,6 +227,12 @@ table thead td {
227
227
-ms-transition : color 0.5s ;
228
228
transition : color 0.5s ;
229
229
}
230
+ @media only screen and (max-width : 420px ) {
231
+ # menu-bar i ,
232
+ # menu-bar .icon-button {
233
+ margin : 0 5px ;
234
+ }
235
+ }
230
236
# menu-bar # print-button {
231
237
margin : 0 15px ;
232
238
}
@@ -237,6 +243,9 @@ html:not(.sidebar-visible) #menu-bar:not(:hover).folded > #menu-bar-sticky-conta
237
243
-ms-transform : translateY (-60px );
238
244
transform : translateY (-60px );
239
245
}
246
+ .left-buttons {
247
+ margin : 0 5px ;
248
+ }
240
249
.no-js .left-buttons {
241
250
display : none;
242
251
}
Original file line number Diff line number Diff line change 14
14
15
15
i , .icon-button {
16
16
position : relative
17
- margin : 0 10px
17
+ margin : 0 8px
18
+ @media only screen and (max-width : $narrow-device-max-width ) {
19
+ margin : 0 5px
20
+ }
18
21
z-index : 10
19
22
line-height : 50px
20
23
cursor : pointer
@@ -30,8 +33,9 @@ html:not(.sidebar-visible) #menu-bar:not(:hover).folded > #menu-bar-sticky-conta
30
33
transform : translateY (- 60px );
31
34
}
32
35
33
- .no-js .left-buttons {
34
- display : none
36
+ .left-buttons {
37
+ .no-js & { display : none }
38
+ margin : 0 5px
35
39
}
36
40
37
41
.menu-title {
Original file line number Diff line number Diff line change @@ -4,3 +4,4 @@ $content-max-width = 750px
4
4
$content-min-width = 320px
5
5
$page-plus-sidebar-width = $content-max-width + $sidebar-width + $page-padding * 2
6
6
$sidebar-reflow-width = $sidebar-width + $content-min-width
7
+ $narrow-device-max-width = 420px
You can’t perform that action at this time.
0 commit comments