mirror of
https://github.com/KevinMidboe/planetposen.git
synced 2025-12-08 20:38:56 +00:00
Renamed header to navigation. Added scss mixin for desktop and mobile. Separate mobile and desktop navigation elements. Transparent planetposen logos in assets/
This commit is contained in:
@@ -1,3 +1,17 @@
|
||||
|
||||
$green: #5cdb95;
|
||||
$text-color: #05386B;
|
||||
$text-color: #05386B;
|
||||
|
||||
$mobile-width: 768px;
|
||||
|
||||
@mixin mobile {
|
||||
@media (max-width: #{$mobile-width}) {
|
||||
@content;
|
||||
}
|
||||
}
|
||||
|
||||
@mixin desktop {
|
||||
@media (min-width: #{$mobile-width + 1px}) {
|
||||
@content;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user