blob: 776ea579dad5d862afc3a1db6248765331c4c657 (
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
|
@use "../abstracts/functions" as fun;
@use "../abstracts/mixins" as mix;
.footer {
background: fun.get-var(color-bg-secondary);
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") {
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;
}
|