1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
@use 'iro-sass/src/index' as iro;
@use '../vars';
@use '../mixins/typography';
@include iro.props-namespace('heading') {
@include iro.props-store((
--dims: (
--in-page-margin: (
--top: iro.props-get(--dims --spacing --y --lg, $global: true),
--top-sibling: iro.props-get(--dims --spacing --y --md, $global: true),
--bottom: iro.props-get(--dims --spacing --y --sm, $global: true),
),
),
--colors: (
--light: iro.props-get(--colors --fg-hi, $global: true),
--strong: iro.props-get(--colors --fg-lo, $global: true),
),
));
@include iro.bem-object(iro.props-namespace()) {
@include typography.set-font(vars.$font--headline);
display: block;
margin-top: iro.props-get(--dims --in-page-margin --top);
margin-bottom: 0;
& + & {
margin-top: iro.props-get(--dims --in-page-margin --top-sibling);
}
@include iro.bem-modifier('xxl') {
color: iro.props-get(--colors --strong);
font-size: iro.props-get(--dims --font-size --xxxl, $global: true);
}
@include iro.bem-modifier('xl') {
color: iro.props-get(--colors --strong);
font-size: iro.props-get(--dims --font-size --xxl, $global: true);
}
@include iro.bem-modifier('lg') {
color: iro.props-get(--colors --strong);
font-size: iro.props-get(--dims --font-size --xl, $global: true);
}
@include iro.bem-modifier('md') {
color: iro.props-get(--colors --strong);
font-size: iro.props-get(--dims --font-size --lg, $global: true);
}
@include iro.bem-modifier('sm') {
@include typography.set-font($font--main, (line-height: map-get(vars.$font--headline, line-height)));
color: iro.props-get(--colors --strong);
font-size: iro.props-get(--dims --font-size --md, $global: true);
font-weight: 500;
}
@include iro.bem-modifier('xs') {
@include typography.set-font($font--main, (line-height: map-get(vars.$font--headline, line-height)));
color: iro.props-get(--colors --light);
font-size: iro.props-get(--dims --font-size --xs, $global: true);
font-weight: 500;
text-transform: uppercase;
}
}
}
|