Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 4 additions & 8 deletions frontend/js/src/tags/TagsComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -311,15 +311,11 @@ export default function AddTagSelect(props: {
flexWrap: "nowrap",
overflowX: "auto",
paddingRight: "3.5em",
scrollbarWidth: "none",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think the addition of scrollbarWidth: "thin" is all we would need to resolve the issue for Firefox (reverting the webkit-specific styles)

"-ms-overflow-style": "none",
"::-webkit-scrollbar": {
height: "5px",
backgroundColor: "#f5f5f5",
},
"::-webkit-scrollbar-track": {
backgroundColor: "#f5f5f5",
},
":hover::-webkit-scrollbar-thumb": {
backgroundColor: "#ccc",
display: "none",
width: "0px",
},
}),
indicatorsContainer: (styles) => ({
Expand Down