Skip to content

Instantly share code, notes, and snippets.

@muhammadawaisshaikh
Created July 15, 2021 12:25
Show Gist options
  • Save muhammadawaisshaikh/b7404e6e9c17c69f78e0c20da23cf95b to your computer and use it in GitHub Desktop.
Save muhammadawaisshaikh/b7404e6e9c17c69f78e0c20da23cf95b to your computer and use it in GitHub Desktop.
vertical scrollable section mixin
@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