Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix SideNav "jumping" in Safari #868

Merged
merged 1 commit into from
Aug 22, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
🔥 Remove animation
  • Loading branch information
simurai committed Aug 21, 2019
commit d164fd7302cf3fc9b1a19f4e301c2fd00e8cb6ce
8 changes: 1 addition & 7 deletions src/navigation/sidenav.scss
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,6 @@
width: 3px;
pointer-events: none;
content: "";
background-color: $gray-300;
transition: transform 0.24s ease-in;
transform: scaleX(0);
transform-origin: center left;
}
}

Expand All @@ -50,8 +46,7 @@

// Bar on the left
&::before {
transition: transform 0.12s ease-out;
transform: scaleX(1);
background-color: $gray-300;
}
}

Expand All @@ -68,7 +63,6 @@
// Bar on the left
&::before {
background-color: $orange-600;
transform: scaleX(1);
}
}

Expand Down