bref-ui 0.2.8 → 0.2.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.
@@ -230,10 +230,12 @@
230
230
  @keyframes pulse-shadow {
231
231
  0%,
232
232
  100% {
233
- box-shadow: 0 0 var(--internal-shadow-size) color-mix(in srgb, var(--color-foreground) 15%, transparent);
233
+ box-shadow: 0 0 var(--internal-shadow-size)
234
+ color-mix(in srgb, var(--color-foreground) 15%, transparent);
234
235
  }
235
236
  50% {
236
- box-shadow: 0 0 var(--internal-shadow-size) color-mix(in srgb, var(--color-foreground) 35%, transparent);
237
+ box-shadow: 0 0 var(--internal-shadow-size)
238
+ color-mix(in srgb, var(--color-foreground) 35%, transparent);
237
239
  }
238
240
  }
239
241
  </style>
@@ -44,7 +44,9 @@
44
44
  --internal-thumb-color: var(--color-primary-saturated);
45
45
 
46
46
  position: relative;
47
- min-width: 7.5rem;
47
+ width: 7.5rem;
48
+ max-width: 100%;
49
+ min-width: 1.5rem;
48
50
  height: var(--internal-track-height);
49
51
  background: var(--internal-color-soft);
50
52
  border-radius: calc(var(--internal-track-height) / 2);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bref-ui",
3
- "version": "0.2.8",
3
+ "version": "0.2.9",
4
4
  "description": "A Svelte UI component library using scoped CSS - minimal and flexible",
5
5
  "license": "MIT",
6
6
  "author": "feuerstein",