We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3571e69 commit 75a3f69Copy full SHA for 75a3f69
1 file changed
Resources/Private/Scripts/presentationals/Overlay.tsx
@@ -60,6 +60,26 @@ const contentWrapStyle = css`
60
gap: 1rem;
61
overflow: auto;
62
max-height: calc(100% - 40px);
63
+
64
+ /**
65
+ * Scollbars
66
+ */
67
+ ::-webkit-scrollbar {
68
+ width: 4px;
69
+ height: 4px;
70
+ }
71
72
+ ::-webkit-scrollbar-track {
73
+ background-color: transparent;
74
75
76
+ ::-webkit-scrollbar-thumb {
77
+ background-color: var(--colors-ContrastDark);
78
79
80
+ ::-webkit-scrollbar-corner {
81
+ background-color: var(--colors-ContrastDarker);
82
83
`;
84
85
const overlayState = signal<Overlays | null>(null);
0 commit comments