1
0
Fork 0

add uses page

This commit is contained in:
Moritz Ruth 2019-03-30 14:56:05 +01:00
parent 80ea9ad3cb
commit 0763a30859
16 changed files with 185 additions and 19 deletions

View file

@ -0,0 +1,14 @@
$desktop-min-breakpoint: 640px;
$mobile-max-breakpoint: $desktop-min-breakpoint - 1px;
@mixin mobile {
@media only screen and (max-width: $mobile-max-breakpoint) {
@content
}
}
@mixin desktop {
@media only screen and (min-width: 640px) {
@content
}
}