Igosuki / compass-mixins

A collection of compass' stylesheet for bower dependencies and libsass
Other
592 stars 197 forks source link

The mixin horizontal-list() is adding an additional display: inline; #61

Open luisfmsouza opened 8 years ago

luisfmsouza commented 8 years ago

When I'm using the mixing @include horizontal-list(0); the code added is:

list-style-image: none; list-style-type: none; margin-left: 0; white-space: nowrap; display: inline; float: left; padding-left: 0; padding-right: 0;

but should be:

list-style-image: none; list-style-type: none; margin-left: 0; white-space: nowrap; float: left; padding-left: 0; padding-right: 0;