Files
planetposen/frontend/styles/variables.scss

17 lines
225 B
SCSS

$green: #5cdb95;
$text-color: #05386B;
$mobile-width: 768px;
@mixin mobile {
@media (max-width: #{$mobile-width}) {
@content;
}
}
@mixin desktop {
@media (min-width: #{$mobile-width + 1px}) {
@content;
}
}