breakouts 0.0.7 → 0.0.8
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 +8 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -14,6 +14,14 @@ It provides utilities for containers, full-bleed sections, breakout content, and
|
|
|
14
14
|
npm install breakouts
|
|
15
15
|
```
|
|
16
16
|
|
|
17
|
+
In your SCSS entry point:
|
|
18
|
+
|
|
19
|
+
```scss
|
|
20
|
+
@use 'breakouts' as *;
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
Note: breakouts automatically forwards all core modules from src/index.scss. You can also import individual modules as needed for tree-shaking.
|
|
24
|
+
|
|
17
25
|
## 📦 Framework Structure
|
|
18
26
|
|
|
19
27
|
Breakouts includes a small set of layout-focused utility classes to help you build responsive and consistent page structures.
|