@lundal/zed-solid 0.0.8 → 0.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.
Files changed (2) hide show
  1. package/dist/style.css +4 -2
  2. package/package.json +1 -1
package/dist/style.css CHANGED
@@ -20,7 +20,6 @@
20
20
  border: none;
21
21
  }
22
22
  .z-button {
23
- height: 36px;
24
23
  padding: 6px 24px;
25
24
  border-radius: 6px;
26
25
  cursor: pointer;
@@ -42,6 +41,7 @@
42
41
 
43
42
  .z-button[aria-busy="true"] {
44
43
  color: transparent;
44
+ position: relative;
45
45
  }
46
46
 
47
47
  .z-button[aria-busy="true"]::before {
@@ -53,7 +53,8 @@
53
53
  border: 3px solid transparent;
54
54
  border-top-color: var(--z-button-text);
55
55
  animation: 0.5s linear infinite z-spin;
56
- margin: 0 auto;
56
+ position: absolute;
57
+ inset: calc(50% - 12px);
57
58
  }
58
59
 
59
60
  .z-button--icon {
@@ -355,6 +356,7 @@ dialog:focus-visible {
355
356
  color: var(--z-text-body);
356
357
 
357
358
  font-family: "Inter", sans-serif;
359
+ font-feature-settings: "calt" 0;
358
360
  font-size: 16px;
359
361
  font-weight: 400;
360
362
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lundal/zed-solid",
3
- "version": "0.0.8",
3
+ "version": "0.0.9",
4
4
  "license": "LGPL-3.0-or-later",
5
5
  "type": "module",
6
6
  "module": "dist/index.js",