blob: a5027637c904fadd2cface859040ccb9d25a1ca2 (
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
30
31
32
33
34
35
36
37
|
@use "../../../styles/abstracts/mixins" as mix;
.wrapper {
display: flex;
flex-flow: column wrap;
gap: var(--spacing-xs);
place-items: center;
place-content: center;
padding: var(--spacing-md) 0 calc(var(--toolbar-size) + var(--spacing-md));
@include mix.media("screen") {
@include mix.dimensions("sm") {
--toolbar-size: 0px;
flex-flow: row wrap;
font-size: var(--font-size-sm);
}
}
}
.nav {
@include mix.media("screen") {
@include mix.dimensions("sm") {
&::before {
content: "\2022";
margin-right: var(--spacing-2xs);
}
}
}
}
.back-to-top {
position: fixed;
bottom: calc(var(--toolbar-size, 0px) + var(--spacing-md));
right: var(--spacing-md);
transition: all 0.4s ease-in 0s;
}
|