index-main/assets/css/base/_responsive.scss
2025-11-04 08:33:44 +01:00

14 lines
353 B
SCSS

$desktop: "screen and (min-width: 1200px)";
$medium: "screen and (max-width: 1200px)";
$small-up: "screen and (min-width: 720px)";
$small: "screen and (max-width: 720px)";
$x-small: "screen and (max-width: 560px)";
@media #{$medium}{
:root{
--padding: 16px;
--padding-cards: 0.75rem;
--padding-cards-small: 0.5rem;
}
}