Skip to content

Commit

Permalink
patch from mmistakes/minimal-mistakes to fix jitter
Browse files Browse the repository at this point in the history
  • Loading branch information
staeiou authored Jul 19, 2017
1 parent 6a1cb4f commit f757274
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions _sass/_sidebar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,24 @@
========================================================================== */

.sidebar {
-webkit-transform: translate3d(0, 0 , 0);
transform: translate3d(0, 0 , 0);

@include clearfix();
margin-bottom: 1em;

@include breakpoint($large) {
@include span(2 of 12);
opacity: 0.75;
-webkit-transition: opacity 0.2s ease-in-out;
transition: opacity 0.2s ease-in-out;
transition: opacity 0.2s ease-in-out;

&:hover {
opacity: 1;
}
}


@include breakpoint($x-large) {
padding-right: 0;
}
Expand Down Expand Up @@ -229,4 +233,4 @@
text-decoration: underline;
}
}
}
}

0 comments on commit f757274

Please sign in to comment.