Change height of channels availability list (#1608)

This commit is contained in:
Wojciech Mista 2021-11-18 13:20:10 +01:00 committed by GitHub
parent e10d79aceb
commit 31046ae356
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -32,7 +32,10 @@ export const useStyles = makeStyles(
paddingBottom: theme.spacing(2)
},
scrollArea: {
maxHeight: 400,
maxHeight: "calc(100vh - 400px)",
"@media (min-height: 800px)": {
maxHeight: 400
},
overflowY: "scroll",
overflowX: "hidden",
marginBottom: theme.spacing(3)