@phun-ky/speccer 8.0.1 → 8.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 +3 -3
- package/package.json +1 -1
- package/speccer.css +171 -171
- package/speccer.js +1 -1
- package/speccer.js.map +1 -1
- package/speccer.min.css +1 -1
package/README.md
CHANGED
|
@@ -227,13 +227,13 @@ The curly brackets are made with SVG paths, and it is required to have the follo
|
|
|
227
227
|
|
|
228
228
|
```html
|
|
229
229
|
<svg
|
|
230
|
-
class="ph"
|
|
230
|
+
class="ph-speccer"
|
|
231
231
|
viewBox="0 0"
|
|
232
232
|
id="ph-speccer-svg"
|
|
233
233
|
xmlns="http://www.w3.org/2000/svg"
|
|
234
234
|
>
|
|
235
235
|
<path
|
|
236
|
-
class="ph path original"
|
|
236
|
+
class="ph-speccer path original"
|
|
237
237
|
id="ph-speccer-path"
|
|
238
238
|
fill="none"
|
|
239
239
|
stroke-width="1"
|
|
@@ -277,7 +277,7 @@ In your component examples, use the following attribute.
|
|
|
277
277
|
Allthough the styling works nicely with dark mode, you can use the provided CSS variables to customize the look and feel. If more control is needed, you can use CSS overrides :)
|
|
278
278
|
|
|
279
279
|
```css
|
|
280
|
-
.ph.speccer {
|
|
280
|
+
.ph-speccer.speccer {
|
|
281
281
|
--ph-speccer-color-padding: rgba(219, 111, 255, 0.4);
|
|
282
282
|
--ph-speccer-color-padding-hover: #db6fff;
|
|
283
283
|
--ph-speccer-color-margin: rgba(255, 247, 111, 0.4);
|
package/package.json
CHANGED