Skip to content

Commit

Permalink
Fix .sidebar flicker/jump when hovered
Browse files Browse the repository at this point in the history
  • Loading branch information
mmistakes committed Nov 4, 2016
1 parent 2d1c33c commit 52cacb3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion _sass/_sidebar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,17 @@
========================================================================== */

.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;
Expand Down

0 comments on commit 52cacb3

Please sign in to comment.