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
jluccisano committed Feb 12, 2017
1 parent 9b2026e commit 37c978e
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 37c978e

Please sign in to comment.