mirror of
https://github.com/Readarr/Readarr
synced 2026-02-03 13:23:41 +01:00
Add class to allow for overriding scrollbar width
Closes #1379 (cherry picked from commit 42343d528372c494b297e5c84125f7bdb6ab4eec)
This commit is contained in:
parent
9674f79f40
commit
1ca42eb711
2 changed files with 6 additions and 0 deletions
|
|
@ -2,6 +2,10 @@
|
|||
/* Placeholder */
|
||||
}
|
||||
|
||||
.track {
|
||||
/* Placeholder */
|
||||
}
|
||||
|
||||
.thumb {
|
||||
min-height: 100px;
|
||||
border: 1px solid transparent;
|
||||
|
|
|
|||
|
|
@ -64,6 +64,7 @@ class OverlayScroller extends Component {
|
|||
|
||||
return (
|
||||
<div
|
||||
className={styles.track}
|
||||
style={finalStyle}
|
||||
{...props}
|
||||
/>
|
||||
|
|
@ -82,6 +83,7 @@ class OverlayScroller extends Component {
|
|||
|
||||
return (
|
||||
<div
|
||||
className={styles.track}
|
||||
style={finalStyle}
|
||||
{...props}
|
||||
/>
|
||||
|
|
|
|||
Loading…
Reference in a new issue