@charset "utf-8";
// Copyright 2019, Oath Inc.
// Licensed under the terms of the MIT license. See LICENSE file in project root for terms.

@mixin lists-default {
    ol.list,
    ul.list {
        list-style-position: inside;

        &.no-marker {
            list-style: none;
        }

        li {
            margin: 4px 0px;
        }
    }
    ul.list {
        list-style-type: square;
    }
}