blob: 8e77a17bc9c441364ff2ca988866d919199ce57d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
@use 'iro-sass/src/props';
@use '../core.vars' as core;
@use '../layouts/container.vars' as container;
$font-size: props.def(--s-body--font-size, props.get(core.$font-size--150)) !default;
$paragraph--margin-bs: props.def(--s-body--paragraph--margin-bs, props.get(core.$size--300)) !default;
$paragraph--max-inline-size: props.def(--s-body--paragraph--max-inline-size, props.get(container.$fixed)) !default;
$img--max-block-size: props.def(--s-body--img--max-block-size, none) !default;
$strong--text-color: props.def(--s-body--strong--text-color, props.get(core.$theme, --heading), 'color') !default;
|