Skip to content

Instantly share code, notes, and snippets.

@graciano
Created October 24, 2017 18:48
Show Gist options
  • Save graciano/fde53b3eda816ee76d603a7ebddcfa9d to your computer and use it in GitHub Desktop.
Save graciano/fde53b3eda816ee76d603a7ebddcfa9d to your computer and use it in GitHub Desktop.
mixin to add to a ul element to reset it's style
@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