beercss 3.5.7 → 3.5.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 +6 -6
- package/dist/cdn/beer.css +4067 -0
- package/dist/cdn/beer.js +489 -0
- package/dist/cdn/beer.min.css +1 -1
- package/index.d.ts +1 -1
- package/package.json +1 -1
- package/src/cdn/beer.ts +5 -0
- package/src/cdn/settings/fonts.css +3 -3
package/README.md
CHANGED
|
@@ -123,19 +123,19 @@ From jsdelivr.net.
|
|
|
123
123
|
|
|
124
124
|
```html
|
|
125
125
|
// with html
|
|
126
|
-
<link href="https://cdn.jsdelivr.net/npm/beercss@3.5.
|
|
127
|
-
<script type="module" src="https://cdn.jsdelivr.net/npm/beercss@3.5.
|
|
126
|
+
<link href="https://cdn.jsdelivr.net/npm/beercss@3.5.8/dist/cdn/beer.min.css" rel="stylesheet" />
|
|
127
|
+
<script type="module" src="https://cdn.jsdelivr.net/npm/beercss@3.5.8/dist/cdn/beer.min.js"></script>
|
|
128
128
|
<script type="module" src="https://cdn.jsdelivr.net/npm/material-dynamic-colors@1.1.1/dist/cdn/material-dynamic-colors.min.js"></script>
|
|
129
129
|
```
|
|
130
130
|
|
|
131
131
|
```css
|
|
132
132
|
// with css
|
|
133
|
-
@import "https://cdn.jsdelivr.net/npm/beercss@3.5.
|
|
133
|
+
@import "https://cdn.jsdelivr.net/npm/beercss@3.5.8/dist/cdn/beer.min.css";
|
|
134
134
|
```
|
|
135
135
|
|
|
136
136
|
```js
|
|
137
137
|
// with javascript
|
|
138
|
-
import "https://cdn.jsdelivr.net/npm/beercss@3.5.
|
|
138
|
+
import "https://cdn.jsdelivr.net/npm/beercss@3.5.8/dist/cdn/beer.min.js";
|
|
139
139
|
import "https://cdn.jsdelivr.net/npm/material-dynamic-colors@1.1.1/dist/cdn/material-dynamic-colors.min.js";
|
|
140
140
|
```
|
|
141
141
|
|
|
@@ -187,8 +187,8 @@ You can use this html to setup your project. See on [Codepen](https://codepen.io
|
|
|
187
187
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
188
188
|
<meta name="google" content="notranslate">
|
|
189
189
|
<title>Hello world</title>
|
|
190
|
-
<link href="https://cdn.jsdelivr.net/npm/beercss@3.5.
|
|
191
|
-
<script type="module" src="https://cdn.jsdelivr.net/npm/beercss@3.5.
|
|
190
|
+
<link href="https://cdn.jsdelivr.net/npm/beercss@3.5.8/dist/cdn/beer.min.css" rel="stylesheet">
|
|
191
|
+
<script type="module" src="https://cdn.jsdelivr.net/npm/beercss@3.5.8/dist/cdn/beer.min.js"></script>
|
|
192
192
|
<script type="module" src="https://cdn.jsdelivr.net/npm/material-dynamic-colors@1.1.1/dist/cdn/material-dynamic-colors.min.js"></script>
|
|
193
193
|
</head>
|
|
194
194
|
<body class="dark">
|