21 lines
332 B
CSS
21 lines
332 B
CSS
.font-size\:base {
|
|
font-size: var(--font-size-base) !important;
|
|
}
|
|
|
|
.font-size\:biggish {
|
|
font-size: var(--font-size-biggish) !important;
|
|
}
|
|
|
|
.font-size\:big {
|
|
font-size: var(--font-size-big) !important;
|
|
}
|
|
|
|
.max-width\:measure {
|
|
max-width: var(--measure);
|
|
}
|
|
|
|
.max-width\:measure\/2 {
|
|
max-width: calc(var(--measure) / 2);
|
|
}
|
|
|