Skip to content

Commit

Permalink
(less) Properly unstyle the .list-unstyled class by switching from …
Browse files Browse the repository at this point in the history
…`margin` to `padding`

Also add better comments
  • Loading branch information
mdo committed Jun 17, 2013
1 parent c92508a commit a099c80
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions type.less
Original file line number Diff line number Diff line change
Expand Up @@ -118,9 +118,9 @@ ol ul {

// List options

// Unstyled keeps list items block level, just removes list-style
// Unstyled keeps list items block level, just removes default browser padding and list-style
.list-unstyled {
margin-left: 0;
padding-left: 0;
list-style: none;
}
// Inline turns list items into inline-block
Expand Down

0 comments on commit a099c80

Please sign in to comment.