| 1 | .MuiBox-root, |
| 2 | .MuiDialogContent-root, |
| 3 | .MuiAutocomplete-popper, |
| 4 | .MuiPopover-paper { |
| 5 | scrollbar-width: thin; |
| 6 | scrollbar-color: var(--hover-color) var(--bg-secondary-color); |
| 7 | |
| 8 | /* Works on Chrome, Edge, and Safari */ |
| 9 | &::-webkit-scrollbar, |
| 10 | ::-webkit-scrollbar { |
| 11 | width: 12px; |
| 12 | } |
| 13 | |
| 14 | &::-webkit-scrollbar-track, |
| 15 | ::-webkit-scrollbar-track { |
| 16 | background: var(--bg-secondary-color); |
| 17 | } |
| 18 | |
| 19 | &::-webkit-scrollbar-thumb, |
| 20 | ::-webkit-scrollbar-thumb { |
| 21 | background-color: var(--hover-color); |
| 22 | border-radius: 20px; |
| 23 | border: 2px solid var(--bg-secondary-color); |
| 24 | } |
| 25 | } |
| 26 | |
| 27 | .MuiBox-root { |
| 28 | box-shadow: none !important; |
| 29 | } |
| 30 | |
| 31 | .MuiInputBase-root.MuiOutlinedInput-root.Mui-focused { |
| 32 | .MuiOutlinedInput-notchedOutline { |
| 33 | border-width: 1px !important; |
| 34 | } |
| 35 | } |