blob: 2fd6fe44421e69461030ee4e3f85e61a20eed374 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
@use "../../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;
}
}
|