podcastartgenerator/site/resources/scss/defaults/_mixin.scss
Paul Couture c4398c641e feat/factory_creation (#1)
Prepping for launch.

Reviewed-on: #1
Co-authored-by: Paul Couture <paul@paulcouture.com>
Co-committed-by: Paul Couture <paul@paulcouture.com>
2023-12-14 11:33:03 -06:00

41 lines
675 B
SCSS

// Mixin For Elementor
@mixin xl-device {
@media (max-width: 1919px) {
@content;
}
}
/* -- For screens 1264px to 1903px */
@mixin lg-device {
@media (max-width: 1499px) {
@content;
}
}
/* -- For screens 960px to 1263px */
@mixin md-device {
@media (max-width: 1199px) {
@content;
}
}
/* -- For screens 600px to 959px */
@mixin sm-device {
@media (max-width: 991px) {
@content;
}
}
/* -- For For screens 0 to 600px */
@mixin xs-device {
@media (max-width: 575px) {
@content;
}
}
/* -- For For screens 0 to 360 */
@mixin tiny-device {
@media (max-width: 360px) {
@content;
}
}