@wistia/ui 0.17.1-beta.a0cd2279.baa08d7 → 0.18.0-beta.1338688d.84af1a8
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/dist/index.cjs +9 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +9 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
/*
|
|
3
|
-
* @license @wistia/ui v0.
|
|
3
|
+
* @license @wistia/ui v0.18.0-beta.1338688d.84af1a8
|
|
4
4
|
*
|
|
5
5
|
* Copyright (c) 2024-2025, Wistia, Inc. and its affiliates.
|
|
6
6
|
*
|
|
@@ -236,6 +236,7 @@ var globalStyleAdjustmentsCss = import_styled_components.css`
|
|
|
236
236
|
* 1. Without this fonts are too heavy weight in OS X Firefox
|
|
237
237
|
* 2. Design decision
|
|
238
238
|
3. See: https://allthingssmitty.com/2020/05/11/css-fix-for-100vh-in-mobile-webkit/
|
|
239
|
+
4. Default font settings that all elements should get unless overridden
|
|
239
240
|
*/
|
|
240
241
|
body {
|
|
241
242
|
-moz-osx-font-smoothing: grayscale; /* 1 */
|
|
@@ -243,6 +244,13 @@ var globalStyleAdjustmentsCss = import_styled_components.css`
|
|
|
243
244
|
line-height: 1.5; /* 2 */
|
|
244
245
|
min-height: 100vh; /* 3 */
|
|
245
246
|
min-height: -webkit-fill-available; /* 3 */
|
|
247
|
+
color: var(--wui-color-text-high-contrast); /* 4 */
|
|
248
|
+
font-family: var(--wui-typography-body-2-family); /* 4 */
|
|
249
|
+
font-size: var(--wui-typography-body-2-size); /* 4 */
|
|
250
|
+
font-weight: var(--wui-typography-body-2-weight); /* 4 */
|
|
251
|
+
|
|
252
|
+
/* line-height: var(--wui-typography-body-2-line-height); */
|
|
253
|
+
margin: 0; /* 2 */
|
|
246
254
|
}
|
|
247
255
|
|
|
248
256
|
/* Remove default margin in favour of better control in authored CSS */
|