@quidgest/ui 0.16.70 → 0.16.72

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.
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.16.70",
2
+ "version": "0.16.72",
3
3
  "components": [
4
4
  {
5
5
  "name": "QAccordion",
package/dist/ui.css CHANGED
@@ -3201,28 +3201,22 @@ body *::-webkit-scrollbar-track {
3201
3201
  outline: 2px solid rgb(var(--q-theme-info-rgb)/50%);
3202
3202
  }
3203
3203
  .q-field--mini > .q-field__control {
3204
- width: calc(1 * 5em + 0 * 0.25rem);
3205
- max-width: 100%;
3204
+ width: min(1 * 5em + 0 * 0.25rem, 100%);
3206
3205
  }
3207
3206
  .q-field--small > .q-field__control {
3208
- width: calc(2 * 5em + 1 * 0.25rem);
3209
- max-width: 100%;
3207
+ width: min(2 * 5em + 1 * 0.25rem, 100%);
3210
3208
  }
3211
3209
  .q-field--medium > .q-field__control {
3212
- width: calc(3 * 5em + 2 * 0.25rem);
3213
- max-width: 100%;
3210
+ width: min(3 * 5em + 2 * 0.25rem, 100%);
3214
3211
  }
3215
3212
  .q-field--large > .q-field__control {
3216
- width: calc(4 * 5em + 3 * 0.25rem);
3217
- max-width: 100%;
3213
+ width: min(4 * 5em + 3 * 0.25rem, 100%);
3218
3214
  }
3219
3215
  .q-field--xlarge > .q-field__control {
3220
- width: calc(6 * 5em + 5 * 0.25rem);
3221
- max-width: 100%;
3216
+ width: min(6 * 5em + 5 * 0.25rem, 100%);
3222
3217
  }
3223
3218
  .q-field--xxlarge > .q-field__control {
3224
- width: calc(8 * 5em + 7 * 0.25rem);
3225
- max-width: 100%;
3219
+ width: min(8 * 5em + 7 * 0.25rem, 100%);
3226
3220
  }
3227
3221
  .q-field--block {
3228
3222
  width: 100%;
@@ -4381,7 +4375,7 @@ body *::-webkit-scrollbar-track {
4381
4375
  width: -moz-fit-content;
4382
4376
  width: fit-content;
4383
4377
  align-items: center;
4384
- gap: 0.5em;
4378
+ gap: 0.375rem;
4385
4379
  cursor: pointer;
4386
4380
  }
4387
4381
  .q-radio-button label {