orc-shared 5.9.0-dev.1 → 5.9.0-dev.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -28,7 +28,16 @@ var useStyle = (0, _styles.makeStyles)(function (theme) {
|
|
|
28
28
|
return {
|
|
29
29
|
container: {
|
|
30
30
|
padding: theme.spacing(2),
|
|
31
|
-
backgroundColor: theme.palette.grey.lighter
|
|
31
|
+
backgroundColor: theme.palette.grey.lighter,
|
|
32
|
+
"&::-webkit-scrollbar": {
|
|
33
|
+
width: theme.spacing(1.5)
|
|
34
|
+
},
|
|
35
|
+
"&::-webkit-scrollbar-thumb": {
|
|
36
|
+
background: theme.palette.grey.borders,
|
|
37
|
+
border: "5px transparent solid",
|
|
38
|
+
backgroundClip: "padding-box",
|
|
39
|
+
borderRadius: theme.spacing(1.5)
|
|
40
|
+
}
|
|
32
41
|
}
|
|
33
42
|
};
|
|
34
43
|
});
|
package/package.json
CHANGED
|
@@ -8,6 +8,15 @@ const useStyle = makeStyles(theme => ({
|
|
|
8
8
|
container: {
|
|
9
9
|
padding: theme.spacing(2),
|
|
10
10
|
backgroundColor: theme.palette.grey.lighter,
|
|
11
|
+
"&::-webkit-scrollbar": {
|
|
12
|
+
width: theme.spacing(1.5),
|
|
13
|
+
},
|
|
14
|
+
"&::-webkit-scrollbar-thumb": {
|
|
15
|
+
background: theme.palette.grey.borders,
|
|
16
|
+
border: `5px transparent solid`,
|
|
17
|
+
backgroundClip: "padding-box",
|
|
18
|
+
borderRadius: theme.spacing(1.5),
|
|
19
|
+
},
|
|
11
20
|
},
|
|
12
21
|
}));
|
|
13
22
|
|