summaryrefslogtreecommitdiffstats
path: root/assets/css/components/_footer.scss
blob: db30fcd6ce774974be4b4522d55e79d465c0c6bd (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;
    }
}