@brandup/ui-kit 1.0.8 → 1.0.9

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 CHANGED
@@ -78,8 +78,6 @@ Default root styles for `<svg>` tag.
78
78
 
79
79
  ```
80
80
  --svg-size: 20px;
81
- --svg-width: var(--svg-size);
82
- --svg-height: var(--svg-size);
83
81
  --svg-fill: var(--text-color);
84
82
  --svg-stroke: none;
85
83
  ```
package/package.json CHANGED
@@ -22,7 +22,7 @@
22
22
  },
23
23
  "type": "module",
24
24
  "license": "Apache-2.0",
25
- "version": "1.0.8",
25
+ "version": "1.0.9",
26
26
  "main": "source/index.ts",
27
27
  "types": "source/index.ts",
28
28
  "dependencies": {
@@ -27,8 +27,6 @@
27
27
 
28
28
  // svg
29
29
  --svg-size: 20px;
30
- --svg-width: var(--svg-size);
31
- --svg-height: var(--svg-size);
32
30
  --svg-fill: var(--text-color);
33
31
  --svg-stroke: none;
34
32
 
@@ -99,8 +97,8 @@ h5 {
99
97
 
100
98
  svg {
101
99
  display: block;
102
- width: var(--svg-width);
103
- height: var(--svg-height);
100
+ width: var(--svg-size);
101
+ height: var(---svg-size);
104
102
  fill: var(--svg-fill);
105
103
  stroke: var(--svg-stroke);
106
104
  }