Skip to content

Commit

Permalink
Make the PSM tabs transition only happen on larger screens
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulAdamDavis committed Sep 30, 2014
1 parent 4e3de54 commit f6ec4c6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion core/client/assets/sass/layouts/default.scss
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,9 @@
overflow: auto;
-webkit-overflow-scrolling: touch;

transition: transform $side-outlet-transition-duration cubic-bezier(0.1, 0.7, 0.1, 1);
@media (min-width: 901px) {
transition: transform $side-outlet-transition-duration cubic-bezier(0.1, 0.7, 0.1, 1);
}

&.outlet-pane-out-left {
transform: translate3d(-100%, 0px, 0px);
Expand Down

0 comments on commit f6ec4c6

Please sign in to comment.