blob: b405114f4f066fd79431d5fd9f7df70f598802fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
@use "../abstracts/functions" as fun;
@use "../abstracts/mixins" as mix;
.footer {
background: fun.get-var(color-bg-secondary);
border-top: fun.convert-px(1) solid fun.get-var(color-border-light);
padding: fun.get-var(spacing-sm) fun.get-var(spacing-md)
calc(#{fun.get-var(toolbar-height)} + #{fun.get-var(spacing-sm)});
@include mix.media("screen") {
@include mix.dimensions("lg") {
box-shadow: 0 -1px 2px 0 fun.get-var(color-shadow);
padding: fun.get-var(spacing-sm) fun.get-var(spacing-md);
}
}
}
.copyright {
align-items: center;
display: flex;
flex-flow: row wrap;
font-family: fun.get-var(font-family-secondary);
font-size: fun.get-var(font-size-md);
gap: fun.get-var(spacing-3xs);
justify-content: center;
}
|