1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-30 00:29:52 +02:00

Extract list-unstyled mixin; closes #17792

/fyi @mdo
This commit is contained in:
Marko Prelec
2015-10-06 12:43:59 +02:00
committed by Chris Rebert
parent 8cb00d6420
commit d5e47c57f1
3 changed files with 10 additions and 5 deletions

7
scss/mixins/_lists.scss Normal file
View File

@@ -0,0 +1,7 @@
// Lists
// Unstyled keeps list items block level, just removes default browser padding and list-style
@mixin list-unstyled {
padding-left: 0;
list-style: none;
}