ascvh@#%(^-^)V ?host,ip,port,protocol,title,domain,country,city,link,org ???à JFIF x x ?? C ?? C ?à " ?? ?? μ } !1AQa "q2?‘?#B±áR?e$3br? %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz??…???‰?’“”?–—???¢£¤¥|§¨?a23′μ?·?1o??????èéêòó???×?ùúáa?????èéê?òó???÷?ùú?? ?? μ w !1AQ aq"2?B‘?±á #3Rebr?{
File "_breakpoints.scss"
Full Path: /home/zcziejy/ryadselyen/res/scss/elements/_breakpoints.scss
File size: 306 bytes
MIME-type: text/plain
Charset: utf-8
@mixin breakpoint($min: 0, $max : 0) {
@if $min > 0 and $max == 0
{
@media (min-width: $min ) { @content; }
}
@if $min > 0 and $max > 0
{
@media (min-width: $min) and (max-width: $max ) { @content; }
}
@if $max > 0 and $min == 0
{
@media (max-width: $max) { @content; }
}
}