14 lines
353 B
SCSS
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;
|
|
}
|
|
}
|