mirror of
https://github.com/KevinMidboe/planetposen.git
synced 2025-10-29 17:50:32 +00:00
17 lines
225 B
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;
|
|
}
|
|
} |