orcs-design-system 2.0.97 → 2.0.99
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.
|
@@ -187,6 +187,9 @@ var Title = styled(H3).withConfig({
|
|
|
187
187
|
},
|
|
188
188
|
"> div > a": {
|
|
189
189
|
fontSize: themeGet("fontSizes.2")(props)
|
|
190
|
+
},
|
|
191
|
+
"> div > div > a": {
|
|
192
|
+
fontSize: themeGet("fontSizes.2")(props)
|
|
190
193
|
}
|
|
191
194
|
});
|
|
192
195
|
}, function (props) {
|
|
@@ -200,6 +203,9 @@ var Title = styled(H3).withConfig({
|
|
|
200
203
|
},
|
|
201
204
|
"> div > a": {
|
|
202
205
|
fontSize: themeGet("fontSizes.1")(props)
|
|
206
|
+
},
|
|
207
|
+
"> div > div > a": {
|
|
208
|
+
fontSize: themeGet("fontSizes.1")(props)
|
|
203
209
|
}
|
|
204
210
|
},
|
|
205
211
|
large: {
|
|
@@ -209,6 +215,9 @@ var Title = styled(H3).withConfig({
|
|
|
209
215
|
},
|
|
210
216
|
"> div > a": {
|
|
211
217
|
fontSize: themeGet("fontSizes.3")(props)
|
|
218
|
+
},
|
|
219
|
+
"> div > div > a": {
|
|
220
|
+
fontSize: themeGet("fontSizes.3")(props)
|
|
212
221
|
}
|
|
213
222
|
}
|
|
214
223
|
}
|
package/es/systemtheme.js
CHANGED