initial commit - base template

This commit is contained in:
2026-02-21 10:40:04 +01:00
parent ee32e7477e
commit 5b63771cc3
18 changed files with 112 additions and 378 deletions

View File

@@ -0,0 +1,15 @@
@use 'functions' as f;
@use 'sass:math';
@use 'sass:map';
$breakpoints: (
'sm': f.em(400),
'md': f.em(700),
'lg': f.em(1200),
);
@mixin breakpoint($size) {
@media (width >=map.get($breakpoints, $size)) {
@content;
}
}