Skip to content

Commit

Permalink
fix(breadcrumb): Hide scrollbar
Browse files Browse the repository at this point in the history
  • Loading branch information
godetremy committed Dec 22, 2024
1 parent cb6ea9a commit f8a023c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/components/Breadcrumb.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,12 @@
justify-content: right;
overflow-x: scroll;
overflow-y: hidden;
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
.container::-webkit-scrollbar {
display: none;
}
a {
Expand Down

0 comments on commit f8a023c

Please sign in to comment.