You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
triumf-landing/assets/scss/_b-mixins.scss

29 lines
338 B

@mixin desktop {
@media (max-width: 1240px) {
@content;
}
}
@mixin laptop {
@media (max-width: 992px) {
@content;
}
}
@mixin tablet {
@media (max-width: 768px) {
@content;
}
}
@mixin mobile {
@media (max-width: 576px) {
@content;
}
}
@mixin mobilesm {
@media (max-width: 400px) {
@content;
}
}