Set viewer style overflow: "auto"

This commit is contained in:
M. Mert Yildiran 2021-08-25 18:39:14 +03:00
parent 10b08317f7
commit 9b04494931
No known key found for this signature in database
GPG Key ID: D42ADB236521BF7A

View File

@ -18,7 +18,7 @@ const useLayoutStyles = makeStyles(() => ({
padding: "12px 24px",
borderRadius: 4,
marginTop: 15,
background: variables.headerBackgoundColor
background: variables.headerBackgoundColor,
},
viewer: {
@ -26,7 +26,8 @@ const useLayoutStyles = makeStyles(() => ({
overflowY: 'auto',
height: "calc(100% - 70px)",
padding: 5,
paddingBottom: 0
paddingBottom: 0,
overflow: "auto",
}
}));