Created
August 1, 2018 20:12
-
-
Save zastrow/94d97dfe2e7e2808bcf4dc45268e6338 to your computer and use it in GitHub Desktop.
Removes default list styles from a <ul> or <ol>
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 delist { | |
// This removes default list styles | |
list-style: none; | |
padding: 0; | |
margin: 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment