0
1
Fork 0

Add desktop mixin

This commit is contained in:
William Buezas 2024-10-01 17:03:31 -03:00
parent 15c5dc761f
commit e5efdff1d8
1 changed files with 6 additions and 0 deletions

View File

@ -9,3 +9,9 @@
@content;
}
}
@mixin desktop {
@media screen and (min-width: 1025px) {
@content;
}
}