/*
    List items

    list-item--icon.icon-check - provides spacing to allow for a check icon to the left of the list item
    list-item--number - Provides the default behavior of an ordered list
    list-item--bulleted - Provides the default behavior of an unordered list

    Markup:
    <ul>
        <li class="list-item {{modifier_class}}">Use the listed email address as the username</li>
        <li class="list-item {{modifier_class}}">Assign a temporary password</li>
        <li class="list-item {{modifier_class}}">Email instructions to the user telling them how to sign in</li>
        <li class="list-item {{modifier_class}}">Prompt the user to choose their own password the first time they sign in</li>
    </ul>

    Name: list

    Styleguide 2.19
*/
.list-item {
    list-style: none;
    line-height: 22px;
}

.list-item--icon {
    padding-left: 22px;
}

.list-item--number {
    list-style: decimal;
    list-style-position: inside;
}

// Standard bulleted lists
.list-item--bulleted {
    list-style: disc;
    margin-left: 20px;
}
