first commit
This commit is contained in:
20
resources/public/vendor/animated-headline/partials/_layout.scss
vendored
Normal file
20
resources/public/vendor/animated-headline/partials/_layout.scss
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
// breakpoints
|
||||
|
||||
$S: 480px;
|
||||
$M: 768px;
|
||||
$L: 1170px;
|
||||
|
||||
// media queries
|
||||
|
||||
@mixin MQ($canvas) {
|
||||
@if $canvas == S {
|
||||
@media only screen and (min-width: $S) { @content; }
|
||||
}
|
||||
@else if $canvas == M {
|
||||
@media only screen and (min-width: $M) { @content; }
|
||||
}
|
||||
@else if $canvas == L {
|
||||
@media only screen and (min-width: $L) { @content; }
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user