responsive.less: Prevent body from scrolling on mobile devices

This commit is contained in:
Florian Strohmaier 2022-07-26 16:45:11 +02:00
parent 7fa1c6014c
commit 66bc338286

View File

@ -37,6 +37,14 @@
html {
font-family: 'minimal-layout';
}
body {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
}
#layout.compact-layout {