fix scroll on mobile (#2585)

* fix scrolling issues on mobile

* resolve conflict
This commit is contained in:
André Rusakow
2023-01-15 18:37:21 -08:00
committed by GitHub
parent 1fa9db0641
commit b8016eaa90
7 changed files with 95 additions and 27 deletions
@@ -0,0 +1,11 @@
@import '../../../styles/mixins.scss';
.layout {
@include screen(tablet) {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
}