@flowstack-ui/brick 0.1.1 → 0.1.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/README.md +3 -1
- package/dist/styles/checkbox-group.css +1 -1
- package/dist/styles/checkbox-group.css.map +1 -1
- package/dist/styles/code-block.css +1 -1
- package/dist/styles/code-block.css.map +1 -1
- package/dist/styles/core.css.map +1 -1
- package/dist/styles/pagination.css +1 -1
- package/dist/styles/pagination.css.map +1 -1
- package/dist/styles/toggle-group.css +1 -1
- package/dist/styles/toggle-group.css.map +1 -1
- package/dist/styles.css.map +1 -1
- package/docs/guides/installation.md +4 -2
- package/package.json +1 -1
|
@@ -56,8 +56,10 @@ import "@flowstack-ui/brick/styles/card.css";
|
|
|
56
56
|
|
|
57
57
|
`core.css` contains Brick's layer order, default tokens, and component-scoped
|
|
58
58
|
foundations. Import it before component styles. Each component stylesheet owns
|
|
59
|
-
that component's rules and
|
|
60
|
-
|
|
59
|
+
that component's rules and every shared visual recipe it renders internally;
|
|
60
|
+
for example, `checkbox-group.css` already includes the Checkbox artwork and
|
|
61
|
+
`toggle-group.css` already includes the Toggle item recipe. Component styles do
|
|
62
|
+
not repeat tokens or foundations.
|
|
61
63
|
|
|
62
64
|
Do not combine modular component styles with `styles.css` or `tokens.css`.
|
|
63
65
|
Choose the complete stylesheet for the simplest and safest installation.
|