Created
June 17, 2022 16:00
-
-
Save zahlenteufel/4fb116f765c851a8097720542571f3fe to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@mixin use-mobile-bottom-bar($value) { | |
.bottom-navigation-buttons-container { | |
display: if($value, block, none); | |
} | |
.navigation-buttons-container { | |
display: if($value, none, block); | |
} | |
} | |
@include use-mobile-bottom-bar(false); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.bottom-navigation-buttons-container { | |
display: none; | |
} | |
.navigation-buttons-container { | |
display: block; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"sass": { | |
"compiler": "dart-sass/1.32.12", | |
"extensions": {}, | |
"syntax": "SCSS", | |
"outputStyle": "expanded" | |
}, | |
"autoprefixer": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment