@howssatoshi/quantumcss 1.0.1 → 1.0.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 +6 -9
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -32,13 +32,13 @@ A modern, performance-optimized utility-first CSS framework with semantic naming
|
|
|
32
32
|
|
|
33
33
|
```bash
|
|
34
34
|
# npm
|
|
35
|
-
npm install quantumcss
|
|
35
|
+
npm install @howssatoshi/quantumcss
|
|
36
36
|
|
|
37
37
|
# yarn
|
|
38
|
-
yarn add quantumcss
|
|
38
|
+
yarn add @howssatoshi/quantumcss
|
|
39
39
|
|
|
40
40
|
# pnpm
|
|
41
|
-
pnpm add quantumcss
|
|
41
|
+
pnpm add @howssatoshi/quantumcss
|
|
42
42
|
```
|
|
43
43
|
|
|
44
44
|
## 🎯 Quick Start
|
|
@@ -68,10 +68,7 @@ pnpm add quantumcss
|
|
|
68
68
|
|
|
69
69
|
### CSS Import
|
|
70
70
|
```css
|
|
71
|
-
@import 'quantumcss/quantum.css';
|
|
72
|
-
@import 'quantumcss/quantum-responsive.css';
|
|
73
|
-
@import 'quantumcss/quantum-components.css';
|
|
74
|
-
@import 'quantumcss/starlight-ui.css';
|
|
71
|
+
@import '@howssatoshi/quantumcss/dist/quantum.min.css';
|
|
75
72
|
```
|
|
76
73
|
|
|
77
74
|
## 🎨 Utility Classes
|
|
@@ -299,7 +296,7 @@ npm run generate
|
|
|
299
296
|
npm run build
|
|
300
297
|
|
|
301
298
|
# Generate JIT utilities with custom output
|
|
302
|
-
npx quantumcss dist/custom.css
|
|
299
|
+
npx @howssatoshi/quantumcss dist/custom.css
|
|
303
300
|
```
|
|
304
301
|
|
|
305
302
|
### Build Analysis
|
|
@@ -477,7 +474,7 @@ MIT License - see [LICENSE](LICENSE) file for details.
|
|
|
477
474
|
|
|
478
475
|
- **Documentation**: https://github.com/macroadster/quantumcss#readme
|
|
479
476
|
- **GitHub**: https://github.com/macroadster/quantumcss
|
|
480
|
-
- **NPM**: https://npmjs.com/package/quantumcss
|
|
477
|
+
- **NPM**: https://npmjs.com/package/@howssatoshi/quantumcss
|
|
481
478
|
- **Discord**: https://discord.gg/quantumcss
|
|
482
479
|
|
|
483
480
|
---
|