lism-css 0.0.13 → 0.1.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/README.md +2 -2
- package/dist/css/props.css +1 -1612
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -19,7 +19,7 @@ pnpm add lism-css
|
|
|
19
19
|
Please import CSS as a global style.
|
|
20
20
|
|
|
21
21
|
```js
|
|
22
|
-
import 'lism-css/
|
|
22
|
+
import 'lism-css/main.css';
|
|
23
23
|
```
|
|
24
24
|
|
|
25
25
|
(For example, if it is Next.js, load it with `_app.js` or `layout.js`.)
|
|
@@ -27,7 +27,7 @@ import 'lism-css/all.css';
|
|
|
27
27
|
For HTML sites, you can also load CSS via CDN.
|
|
28
28
|
|
|
29
29
|
```html
|
|
30
|
-
<link href="https://cdn.jsdelivr.net/npm/lism-css/dist/css/
|
|
30
|
+
<link href="https://cdn.jsdelivr.net/npm/lism-css/dist/css/main.css" rel="stylesheet" />
|
|
31
31
|
```
|
|
32
32
|
|
|
33
33
|
### 3. Using Components
|