blob: 5c0040e717a49fac9141d850ba244d8602f26b6d (
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
27
28
29
|
@use "@styles/abstracts/functions" as fun;
.icon {
display: block;
margin: auto;
width: var(--icon-size, #{fun.convert-px(40)});
}
.envelop {
fill: var(--color-primary-lighter);
stroke: var(--color-border-dark);
stroke-width: 4;
}
.lines {
fill: var(--color-border-dark);
}
.background {
fill: var(--color-shadow-dark);
stroke: var(--color-border-dark);
stroke-width: 4;
}
.paper {
fill: var(--color-bg);
stroke: var(--color-border-dark);
stroke-width: 4;
}
|