Done !
| Server IP : 46.105.57.169 / Your IP : 216.73.216.67 Web Server : Apache System : Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : verseaumee ( 152031) PHP Version : 8.5.7 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/verseaumee/ptitsanes/media/gantry5/engines/nucleus/scss/nucleus/mixins/ |
Upload File : |
// Breakpoints
@mixin breakpoint($breakpoint, $media: all) {
@if $breakpoint == large-desktop-range {
@media only #{$media} and (min-width: $breakpoints-large-desktop-container) { @content; }
}
@else if $breakpoint == desktop-range {
@media only #{$media} and (min-width: $breakpoints-desktop-container) and (max-width: $breakpoints-large-desktop-container - 0.01rem) { @content; }
}
@else if $breakpoint == desktop-only {
@media only #{$media} and (min-width: $breakpoints-desktop-container) { @content; }
}
@else if $breakpoint == tablet-range {
@media only #{$media} and (min-width: $breakpoints-tablet-container) and (max-width: $breakpoints-desktop-container - 0.01rem) { @content; }
}
@else if $breakpoint == large-mobile-range {
@media only #{$media} and (min-width: $breakpoints-large-mobile-container + 0.01rem) and (max-width: $breakpoints-tablet-container - 0.01rem) { @content; }
}
@else if $breakpoint == small-mobile-range {
@media only #{$media} and (max-width: $breakpoints-large-mobile-container) { @content; }
}
@else if $breakpoint == no-mobile {
@media only #{$media} and (min-width: $breakpoints-tablet-container) { @content; }
}
@else if $breakpoint == mobile-only {
@media only #{$media} and (max-width: $breakpoints-tablet-container - 0.01rem) { @content; }
}
@else if $breakpoint == no-desktop {
@media only #{$media} and (max-width: $breakpoints-desktop-container - 0.01rem) { @content; }
}
}