WTF
This commit is contained in:
commit
9f029ec70d
1 changed files with 3 additions and 3 deletions
|
@ -1,12 +1,12 @@
|
|||
@mixin breakpoint($point) {
|
||||
@if $point == desktop {
|
||||
@media (min-width: 1200px) { @content; }
|
||||
@media screen and (min-width: 1200px) { @content; }
|
||||
}
|
||||
@else if $point == tablet-landscape {
|
||||
@media (min-width: 1024px) { @content; }
|
||||
@media screen and (min-width: 1024px) { @content; }
|
||||
}
|
||||
@else if $point == tablet-portrait {
|
||||
@media (min-width: 768px) { @content; }
|
||||
@media screen and (min-width: 768px) { @content; }
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue