Created
July 15, 2021 12:25
-
-
Save muhammadawaisshaikh/b7404e6e9c17c69f78e0c20da23cf95b to your computer and use it in GitHub Desktop.
vertical scrollable section mixin
This file contains hidden or 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 scroll-menu($width, $height, $padding, $margin, $background, $color) { | |
background-color: $background; | |
overflow: auto; | |
white-space: nowrap; | |
.item { | |
display: inline-block; | |
color: $color; | |
text-align: center; | |
padding: $padding; | |
margin: $margin; | |
width: $width; | |
height: $height; | |
&.active { | |
border-bottom: 3px solid $color; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment