Created
October 24, 2017 18:48
-
-
Save graciano/fde53b3eda816ee76d603a7ebddcfa9d to your computer and use it in GitHub Desktop.
mixin to add to a ul element to reset it's style
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 reset-list($display-inline: false) | |
{ | |
padding-left: 0; | |
margin:0; | |
& > li { | |
list-style: none; | |
@if ($display-inline) { | |
display: inline; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment