Skip to content

Commit

Permalink
fix(bug): Shell header menu is being cut off (#301)
Browse files Browse the repository at this point in the history
  • Loading branch information
RazvanPRA committed Jul 10, 2023
1 parent 75678f8 commit 299ba4a
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions coral-component-shell/src/styles/index.styl
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,18 @@ coral-shell-content {
right: 0;

-webkit-overflow-scrolling: touch;
overflow: auto;
scrollbar-width: thin;
-ms-overflow-style: none;
}

@media screen and (max-width: 480px){
coral-shell-content {
overflow-x: hidden;
}
coral-shell-content::-webkit-scrollbar {
width: 0.1em;
background-color: transparent;
}

coral-shell-content::-webkit-scrollbar-thumb {
background-color: transparent;
}

@require 'header';
Expand Down

0 comments on commit 299ba4a

Please sign in to comment.