@photon-ai/pho-ui 0.7.1 → 0.7.2
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/styles/pho.css +7 -0
package/package.json
CHANGED
package/src/styles/pho.css
CHANGED
|
@@ -23,6 +23,13 @@
|
|
|
23
23
|
.dark {
|
|
24
24
|
color-scheme: dark;
|
|
25
25
|
}
|
|
26
|
+
|
|
27
|
+
/* Grayscale AA — macOS subpixel smoothing paints PolySans (and other VFs)
|
|
28
|
+
noticeably heavier at UI sizes. Matches the docs site's body.antialiased. */
|
|
29
|
+
body {
|
|
30
|
+
-webkit-font-smoothing: antialiased;
|
|
31
|
+
-moz-osx-font-smoothing: grayscale;
|
|
32
|
+
}
|
|
26
33
|
}
|
|
27
34
|
|
|
28
35
|
/* True squircle corners (progressive enhancement; falls back to border-radius
|