Skip to content

Commit

Permalink
Removed scrollbar for all browser types
Browse files Browse the repository at this point in the history
/* Internet Explorer, Edge: */
-ms-overflow-style: none;

/* Firefox: */
scrollbar-width: none;

/* Safari, Chrome */
::-webkit-scrollbar {
  display: none;
}
  • Loading branch information
danvgar committed Jan 7, 2025
1 parent 440de5d commit 32fb393
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -185,10 +185,14 @@ const ResultsMap = ({ stakeholders, categoryIds, toggleCategory, loading }) => {
display="inline-flex"
alignItems="flex-start"
sx={{
overflow: "auto",
overflowX: "auto",
overflowY: "hidden",
gap: "0.5rem",
padding: isMobile ? "0 0 0.3rem 0.75rem" : "0 0 0.3rem 2.25rem",
scrollbarWidth: "none",
"&::-webkit-scrollbar": {
display: "none",
},
top: 0,
left: isMobile
? 0
Expand Down

0 comments on commit 32fb393

Please sign in to comment.