.list { display: grid; width: fit-content; height: fit-content; &--centered { margin-inline: auto; justify-items: center; } &--inlined { grid-auto-flow: column; grid-template-columns: repeat( auto-fit, min(calc(100vw - (var(--spacing-md) * 2)), 1fr) ); column-gap: clamp(var(--spacing-lg), 3vw, var(--spacing-3xl)); row-gap: clamp(var(--spacing-sm), 3vw, var(--spacing-md)); } &--stacked { gap: var(--spacing-2xs); } } ww.armandphilippot.com' title='www.armandphilippot.com Git repository'/>
summaryrefslogtreecommitdiffstats
path: root/src/components/molecules/buttons/heading-button.module.scss
blob: 9c278e4299c535b0e2a6065fc2a4c4e883148716 (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
38
39
40
41
42
43