summaryrefslogtreecommitdiffstats
path: root/assets/css/components/_logo.scss
blob: 13587c83a88fcfaede9e64380690ce1c0c677ffb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
@include namespace('logo') {
    @include store((
        --colors: (
            --fg: prop(--colors --fg-lo, $global: true),
            --bg: prop(--colors --bg-hi, $global: true),
            --hover: (
                --fg: prop(--colors --bg-hi, $global: true),
                --bg: prop(--colors --accent --color, $global: true),
            )
        )
    ));

    @include component(namespace()) {
        position: fixed;
        z-index:  10000;
        top:      0;
        left:     0;
    }
}