summaryrefslogtreecommitdiffstats
path: root/assets/css/scopes/_small.scss
blob: f7aa61c7f8620b0cdfa4af83be895ea466ab2cd9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
@include namespace('small') {
    @include store((
        --colors: (
            --fg: prop(--colors --fg-hi, $global: true),
        )
    ));

    @include scope(namespace()) {
        color:       prop(--colors --fg);
        line-height: 1.4;

        p {
            margin-top: $line-height * .25rem;
        }
    }
}