Skip to content

Commit f757274

Browse files
authored
patch from mmistakes/minimal-mistakes to fix jitter
1 parent 6a1cb4f commit f757274

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

_sass/_sidebar.scss

+6-2
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,24 @@
77
========================================================================== */
88

99
.sidebar {
10+
-webkit-transform: translate3d(0, 0 , 0);
11+
transform: translate3d(0, 0 , 0);
12+
1013
@include clearfix();
1114
margin-bottom: 1em;
1215

1316
@include breakpoint($large) {
1417
@include span(2 of 12);
1518
opacity: 0.75;
1619
-webkit-transition: opacity 0.2s ease-in-out;
17-
transition: opacity 0.2s ease-in-out;
20+
transition: opacity 0.2s ease-in-out;
1821

1922
&:hover {
2023
opacity: 1;
2124
}
2225
}
2326

27+
2428
@include breakpoint($x-large) {
2529
padding-right: 0;
2630
}
@@ -229,4 +233,4 @@
229233
text-decoration: underline;
230234
}
231235
}
232-
}
236+
}

0 commit comments

Comments
 (0)