orcs-design-system 2.0.94 → 2.0.95
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.
|
@@ -180,25 +180,35 @@ var Title = styled(H3).withConfig({
|
|
|
180
180
|
displayName: "Avatar__Title",
|
|
181
181
|
componentId: "sc-1wtet2j-4"
|
|
182
182
|
})(function (props) {
|
|
183
|
+
return css({
|
|
184
|
+
fontSize: themeGet("fontSizes.2")(props),
|
|
185
|
+
"> a": {
|
|
186
|
+
fontSize: themeGet("fontSizes.2")(props)
|
|
187
|
+
},
|
|
188
|
+
"> div > a": {
|
|
189
|
+
fontSize: themeGet("fontSizes.2")(props)
|
|
190
|
+
}
|
|
191
|
+
});
|
|
192
|
+
}, function (props) {
|
|
183
193
|
return variant({
|
|
184
194
|
prop: "sizing",
|
|
185
195
|
variants: {
|
|
186
196
|
small: {
|
|
187
|
-
fontSize: themeGet("fontSizes.
|
|
197
|
+
fontSize: themeGet("fontSizes.1")(props),
|
|
188
198
|
"> a": {
|
|
189
|
-
fontSize: themeGet("fontSizes.
|
|
199
|
+
fontSize: themeGet("fontSizes.1")(props)
|
|
190
200
|
},
|
|
191
201
|
"> div > a": {
|
|
192
|
-
fontSize: themeGet("fontSizes.
|
|
202
|
+
fontSize: themeGet("fontSizes.1")(props)
|
|
193
203
|
}
|
|
194
204
|
},
|
|
195
205
|
large: {
|
|
196
|
-
fontSize: themeGet("fontSizes.
|
|
206
|
+
fontSize: themeGet("fontSizes.3")(props),
|
|
197
207
|
"> a": {
|
|
198
|
-
fontSize: themeGet("fontSizes.
|
|
208
|
+
fontSize: themeGet("fontSizes.3")(props)
|
|
199
209
|
},
|
|
200
210
|
"> div > a": {
|
|
201
|
-
fontSize: themeGet("fontSizes.
|
|
211
|
+
fontSize: themeGet("fontSizes.3")(props)
|
|
202
212
|
}
|
|
203
213
|
}
|
|
204
214
|
}
|
|
@@ -218,14 +228,15 @@ var Subtitle = styled(Text).withConfig({
|
|
|
218
228
|
componentId: "sc-1wtet2j-5"
|
|
219
229
|
})(function (props) {
|
|
220
230
|
return css({
|
|
221
|
-
color: themeGet("colors.grey")(props)
|
|
231
|
+
color: themeGet("colors.grey")(props),
|
|
232
|
+
fontSize: themeGet("fontSizes.1")(props)
|
|
222
233
|
});
|
|
223
234
|
}, function (props) {
|
|
224
235
|
return variant({
|
|
225
236
|
prop: "sizing",
|
|
226
237
|
variants: {
|
|
227
238
|
small: {
|
|
228
|
-
fontSize: themeGet("fontSizes.
|
|
239
|
+
fontSize: themeGet("fontSizes.0")(props),
|
|
229
240
|
fontWeight: themeGet("fontWeights.1")(props)
|
|
230
241
|
},
|
|
231
242
|
large: {
|