@lolmath/ui 9.1.1 → 9.2.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 +1052 -409
- package/dist/index.d.mts +103 -4
- package/dist/index.mjs +643 -280
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/readme.md +10 -0
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -19,6 +19,16 @@ import "@lolmath/ui/font/spiegel";
|
|
|
19
19
|
import "@lolmath/ui/css";
|
|
20
20
|
```
|
|
21
21
|
|
|
22
|
+
## No CSS Reset Required
|
|
23
|
+
|
|
24
|
+
The components look the same with or without a reset — they set whatever they
|
|
25
|
+
need on their own elements rather than assuming a normalized baseline. Tailwind's
|
|
26
|
+
preflight, another reset, or none at all all render identically.
|
|
27
|
+
|
|
28
|
+
`apps/ui-storybook` deliberately ships no reset so this stays true, and
|
|
29
|
+
`visual/preflight.visual.spec.ts` renders every component twice — bare and with
|
|
30
|
+
preflight applied — and fails if a single pixel differs.
|
|
31
|
+
|
|
22
32
|
## CSS Layer
|
|
23
33
|
|
|
24
34
|
All CSS modules have the `lol` layer. You can use `@layer` to control the
|