diff options
author | Eug-VS <eug-vs@keemail.me> | 2020-01-11 20:11:29 +0300 |
---|---|---|
committer | Eug-VS <eug-vs@keemail.me> | 2020-01-11 20:11:29 +0300 |
commit | 0328a41d0fbb76fbb805610376b1c607faf60730 (patch) | |
tree | b22a2c70c45823642f5365bbf51bb4d54c2fdaa8 /src/components/Window/WindowSurface/WindowSurface.js | |
parent | 02ddc8f3ed6858521480a3c3928f50ff40f34501 (diff) | |
download | chrono-cube-ui-0328a41d0fbb76fbb805610376b1c607faf60730.tar.gz |
Add overflow and scrollbar color to WindowSurface
Diffstat (limited to 'src/components/Window/WindowSurface/WindowSurface.js')
-rw-r--r-- | src/components/Window/WindowSurface/WindowSurface.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/components/Window/WindowSurface/WindowSurface.js b/src/components/Window/WindowSurface/WindowSurface.js index d1d1510..c4e6b3d 100644 --- a/src/components/Window/WindowSurface/WindowSurface.js +++ b/src/components/Window/WindowSurface/WindowSurface.js @@ -9,6 +9,8 @@ const useStyles = makeStyles(theme => ({ display: 'flex', flexDirection: 'column', background: theme.palette.background.elevation, + overflowY: 'auto', + scrollbarColor: `${theme.palette.primary.dark} ${theme.palette.primary.light}`, } })); |