@gleich/ui 1.0.0 → 1.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.
@@ -28,7 +28,6 @@
28
28
  width: 100%;
29
29
  border-top: 0.5px solid var(--border);
30
30
  padding: 5px 0;
31
- margin-top: 30px;
32
31
  display: flex;
33
32
  justify-content: space-between;
34
33
  }
package/dist/error.svelte CHANGED
@@ -27,6 +27,11 @@
27
27
  animation: blink 1s infinite;
28
28
  }
29
29
 
30
+ h1 {
31
+ font-size: 25px;
32
+ font-family: 'IBM Plex Sans';
33
+ }
34
+
30
35
  .container {
31
36
  display: flex;
32
37
  align-items: center;
@@ -35,20 +40,28 @@
35
40
  color: var(--red-foreground);
36
41
  padding: 30px;
37
42
  border-radius: var(--border-radius);
43
+ border: 1px solid var(--red-border);
38
44
  }
39
45
 
40
- h1 {
41
- font-size: 25px;
42
- font-family: 'IBM Plex Sans';
46
+ @-webkit-keyframes blink {
47
+ 0%,
48
+ 70% {
49
+ opacity: 100%;
50
+ }
51
+ 80%,
52
+ 100% {
53
+ opacity: 30%;
54
+ }
43
55
  }
44
56
 
45
57
  @keyframes blink {
46
58
  0%,
47
- 100% {
48
- opacity: 1;
59
+ 70% {
60
+ opacity: 100%;
49
61
  }
50
- 50% {
51
- opacity: 0.5;
62
+ 80%,
63
+ 100% {
64
+ opacity: 30%;
52
65
  }
53
66
  }
54
67
  </style>
package/dist/styles.css CHANGED
@@ -216,11 +216,6 @@ button:hover {
216
216
  inset 0px 1px 8px var(--box-shadow-color);
217
217
  }
218
218
 
219
- button:focus {
220
- outline: 2px solid var(--blue-foreground);
221
- outline-offset: 2px;
222
- }
223
-
224
219
  ol,
225
220
  ul {
226
221
  padding-left: 5px;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gleich/ui",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "license": "MIT",
5
5
  "scripts": {
6
6
  "dev": "vite dev --open",