Skip to content

Commit

Permalink
fix(AppFrame): main nav scrollbar fix for safari
Browse files Browse the repository at this point in the history
  • Loading branch information
marcinsawicki committed Aug 1, 2024
1 parent 0e4fd96 commit 730b279
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,9 @@ $base-class: 'navigation-group';
&--scrollable {
overflow-y: scroll;
scrollbar-width: none;

&::-webkit-scrollbar {
width: 0;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,11 @@ $base-class: 'side-navigation';
width: 4px;
}

&::-webkit-scrollbar-thumb {
border-radius: 2px;
background-color: var(--action-neutral-hover);
}

&--no-gaps {
gap: 0;
}
Expand Down

0 comments on commit 730b279

Please sign in to comment.