first commit

This commit is contained in:
2024-12-20 12:48:12 +01:00
commit d9fb74972a
217 changed files with 26712 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
@mixin responsive($breakpoint) {
@if $breakpoint == small-phones {
@media only screen
and (max-height: 667px) {
@content;
}
}
@if $breakpoint == tablet {
@media only screen
and (min-width: 768px) {
@content;
}
}
@if $breakpoint == desktop {
@media only screen
and (min-width: 1366px)
{
@content;
}
}
}