Skip to content

Commit

Permalink
fix: hide scroll
Browse files Browse the repository at this point in the history
  • Loading branch information
potts99 committed Nov 9, 2024
1 parent 2ac1b44 commit 040a934
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions apps/client/styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -516,6 +516,16 @@
}
}

.root::-webkit-scrollbar {
display: none !important;
}

/* Hide scrollbar for IE, Edge and Firefox */
.root {
-ms-overflow-style: none !important; /* IE and Edge */
scrollbar-width: none !important; /* Firefox */
}

.ProseMirror {
overflow-y: auto;
max-height: 70vh;
Expand Down

0 comments on commit 040a934

Please sign in to comment.