Skip to content
This repository has been archived by the owner on Jul 11, 2023. It is now read-only.

Commit

Permalink
Fix .sidebar flicker/jump when hovered
Browse files Browse the repository at this point in the history
  • Loading branch information
makaroniame committed Nov 4, 2016
1 parent 76733cb commit 7ea0d96
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 7ea0d96

Please sign in to comment.