@justeattakeaway/pie-css 0.2.0 → 0.3.0
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.css +9 -0
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -1067,9 +1067,18 @@
|
|
|
1067
1067
|
}
|
|
1068
1068
|
html {
|
|
1069
1069
|
box-sizing: border-box;
|
|
1070
|
+
|
|
1071
|
+
/* These rules with smooth fonts. It makes fonts look crisp and clean on devices
|
|
1072
|
+
that support it. */
|
|
1070
1073
|
text-rendering: optimizelegibility;
|
|
1071
1074
|
-webkit-font-smoothing: antialiased;
|
|
1072
1075
|
-moz-font-smoothing: antialiased;
|
|
1076
|
+
|
|
1077
|
+
/* These are added to prevent text size adjustments in various browsers.
|
|
1078
|
+
In some browsers, such as iOS Safari, will try to increase the font-size
|
|
1079
|
+
when you rotate the screen. This can be jarring and break layouts. */
|
|
1080
|
+
-webkit-text-size-adjust: 100%;
|
|
1081
|
+
text-size-adjust: 100%;
|
|
1073
1082
|
}
|
|
1074
1083
|
*,
|
|
1075
1084
|
*:before,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@justeattakeaway/pie-css",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "A styling library that provides both a shared collection of ready to use CSS styles to be used across JET web front-ends, and SCSS-based style helpers for our PIE Web Component library.",
|
|
5
5
|
"author": "JustEatTakeaway - Design System Web Team",
|
|
6
6
|
"files": [
|