summaryrefslogtreecommitdiffstats
path: root/assets/css/components/_footer.scss
blob: 8fcbc98e1b50c4f285cfbbe31eb07f10446d1d35 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
@include namespace('footer') {
    @include store((
        --dims: (
            --pad-y: .8em
        ),
        --colors: (
            --fg: prop(--colors --obj, $global: true)
        )
    ));

    @include component(namespace()) {
        padding-top: prop(--dims --pad-y);
        padding-bottom: prop(--dims --pad-y);
        color: prop(--colors --fg);
        text-align: right;
    }
}