@igo2/sdg-core 1.0.0-next.102 → 1.0.0-next.103
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/style/_typography.scss +12 -6
package/package.json
CHANGED
|
@@ -81,7 +81,8 @@
|
|
|
81
81
|
max-inline-size: var(--sdg-max-content-width);
|
|
82
82
|
}
|
|
83
83
|
|
|
84
|
-
h1
|
|
84
|
+
h1,
|
|
85
|
+
.h1 {
|
|
85
86
|
@include header-font('h1');
|
|
86
87
|
@include title-border;
|
|
87
88
|
|
|
@@ -93,7 +94,8 @@
|
|
|
93
94
|
}
|
|
94
95
|
}
|
|
95
96
|
|
|
96
|
-
h2
|
|
97
|
+
h2,
|
|
98
|
+
.h2 {
|
|
97
99
|
@include header-font('h2');
|
|
98
100
|
|
|
99
101
|
@include breakpoints.media(mobile) {
|
|
@@ -102,7 +104,8 @@
|
|
|
102
104
|
}
|
|
103
105
|
}
|
|
104
106
|
|
|
105
|
-
h3
|
|
107
|
+
h3,
|
|
108
|
+
.h3 {
|
|
106
109
|
@include header-font('h3');
|
|
107
110
|
|
|
108
111
|
@include breakpoints.media(mobile) {
|
|
@@ -110,15 +113,18 @@
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
h4
|
|
116
|
+
h4,
|
|
117
|
+
.h4 {
|
|
114
118
|
@include header-font('h4');
|
|
115
119
|
}
|
|
116
120
|
|
|
117
|
-
h5
|
|
121
|
+
h5,
|
|
122
|
+
.h5 {
|
|
118
123
|
@include header-font('h5');
|
|
119
124
|
}
|
|
120
125
|
|
|
121
|
-
h6
|
|
126
|
+
h6,
|
|
127
|
+
.h6 {
|
|
122
128
|
@include header-font('h6');
|
|
123
129
|
}
|
|
124
130
|
|