blob: 0cd3654853782f470c7cfd4165d3487b9643d26a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
@use "@styles/abstracts/functions" as fun;
@mixin styles {
figure {
display: flex;
flex-flow: column;
width: fit-content;
margin: 0 auto;
position: relative;
text-align: center;
}
figcaption {
margin: 0;
padding: fun.convert-px(4) var(--spacing-2xs);
background: var(--color-bg-secondary);
border: fun.convert-px(1) solid var(--color-border-light);
font-weight: 500;
}
}
|