first commit

This commit is contained in:
2025-09-09 19:58:42 -06:00
commit 6b40f60448
4981 changed files with 485864 additions and 0 deletions

View File

@ -0,0 +1,20 @@
// breakpoints
$S: 480px;
$M: 768px;
$L: 1170px;
// media queries
@mixin MQ($canvas) {
@if $canvas == S {
@media only screen and (min-width: $S) { @content; }
}
@else if $canvas == M {
@media only screen and (min-width: $M) { @content; }
}
@else if $canvas == L {
@media only screen and (min-width: $L) { @content; }
}
}