Mobile compatibility with last commit

Side effect of making columns wider,
which is honestly quite nice.
This commit is contained in:
Emilia Allison 2023-07-19 13:01:52 -04:00
parent bc05b9fc72
commit 0e575802cf
Signed by: emilia
GPG Key ID: 7A3F8997BFE894E0
2 changed files with 2 additions and 6 deletions

View File

@ -19,7 +19,7 @@
/* Classes */ /* Classes */
%offset-grid { %offset-grid {
margin: 0; margin: 0;
height: 100%; height: 100vh;
width: 100%; width: 100%;
div { div {
@ -49,7 +49,7 @@ $offset-amt: 0.33fr;
$dir_adj: "--#{$dir}"; $dir_adj: "--#{$dir}";
} }
@each $size, $size_val in (null: 1fr, wide: 0.6fr, narrow: 1.2fr) { @each $size, $size_val in (null: 1fr, wide: 20vw, narrow: 1.2fr) {
$size_adj: ""; $size_adj: "";
@if $size { @if $size {
$size_adj: "--#{$size}"; $size_adj: "--#{$size}";

View File

@ -18,7 +18,3 @@ $gap-sizes: ("small": 1vmin, "mid": 3vmin, "large": 5vmin);
} }
} }
} }
.no-overflow {
overflow: hidden;
}