bref-ui 0.2.0 → 0.2.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.
@@ -87,6 +87,7 @@
87
87
 
88
88
  .wide {
89
89
  width: 100%;
90
+ flex-shrink: 1;
90
91
  }
91
92
 
92
93
  /* Sizes */
@@ -181,11 +182,19 @@
181
182
  }
182
183
 
183
184
  .filled:not(:disabled):hover {
184
- background-color: color-mix(in oklch, var(--internal-current-color) var(--internal-btn-hover-mix), black);
185
+ background-color: color-mix(
186
+ in oklch,
187
+ var(--internal-current-color) var(--internal-btn-hover-mix),
188
+ black
189
+ );
185
190
  }
186
191
 
187
192
  .filled:not(:disabled):active {
188
- background-color: color-mix(in oklch, var(--internal-current-color) var(--internal-btn-active-mix), black);
193
+ background-color: color-mix(
194
+ in oklch,
195
+ var(--internal-current-color) var(--internal-btn-active-mix),
196
+ black
197
+ );
189
198
  }
190
199
 
191
200
  /* Soft variant */
@@ -105,6 +105,7 @@
105
105
 
106
106
  .input-container.wide {
107
107
  width: 100%;
108
+ flex-shrink: 1;
108
109
  }
109
110
 
110
111
  .input-wrapper {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bref-ui",
3
- "version": "0.2.0",
3
+ "version": "0.2.2",
4
4
  "description": "A Svelte UI component library using scoped CSS - minimal and flexible",
5
5
  "license": "MIT",
6
6
  "author": "feuerstein",