Skip to content

Commit

Permalink
Try: Fix vertical scroll in horizontal toolbar. (#32655)
Browse files Browse the repository at this point in the history
  • Loading branch information
jasmussen authored Jun 15, 2021
1 parent 90be307 commit f8c1198
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,12 @@
display: flex;
flex-grow: 1;
width: 100%;
overflow: auto; // Allow horizontal scrolling on mobile.
position: relative;

// Allow horizontal scrolling on mobile.
overflow-y: hidden;
overflow-x: auto;

// Animation
transition: border-color 0.1s linear, box-shadow 0.1s linear;
@include reduce-motion("transition");
Expand Down

0 comments on commit f8c1198

Please sign in to comment.