-
Notifications
You must be signed in to change notification settings - Fork 0
Lists
Chris Evans edited this page Dec 7, 2017
·
2 revisions
Lists are generally completely stripped of style which is slightly weird, but comes from Bourbon's Bitters. I am not sure how much I like this, but I understand why its useful - a lot of the times lists are used to display elements and it requires stripping out the styles every time. There is a simple solution to getting the list styles back - the .default
class helper. Add this class to either list and it adds back in the bullet and the padding.
ol.default {
list-style-type: decimal;
margin-bottom: .75em;
padding-left: 1.5em;
}
ul.default {
list-style-type: disc;
margin-bottom: .75em;
padding-left: 1.5em;
}