blob: 2330ca24e52a95ec87068149fd2acdd20a612bbf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
@use "@styles/abstracts/functions" as fun;
.wrapper {
width: min(calc(100vw - (var(--spacing-md) * 2)), fun.convert-px(500));
margin: auto;
}
.title {
width: max-content;
margin-left: auto;
margin-right: auto;
}
|