@quidgest/ui 0.5.8 → 0.5.10
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.
- package/dist/ui.css +1 -1
- package/dist/ui.esm.js +2 -2
- package/dist/ui.esm.js.map +1 -1
- package/dist/ui.js +1 -1
- package/dist/ui.js.map +1 -1
- package/dist/ui.min.css +1 -1
- package/dist/ui.min.js +1 -1
- package/dist/ui.min.js.map +1 -1
- package/dist/ui.scss +7 -6
- package/package.json +1 -1
package/dist/ui.scss
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Quidgest Framework v0.5.
|
|
2
|
+
* Quidgest Framework v0.5.10
|
|
3
3
|
* (c) 2023 Quidgest - Consultores de Gestão, SA
|
|
4
4
|
*/
|
|
5
5
|
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
|
|
@@ -234,10 +234,10 @@ $font-weight-regular: 400;
|
|
|
234
234
|
$font-weight-italic: 400;
|
|
235
235
|
$font-weight-bold: 700;
|
|
236
236
|
$font-weight-black: 900;
|
|
237
|
-
$border: #dce3e8;
|
|
238
|
-
$outline-width: 2px;
|
|
239
|
-
$outline-style: solid;
|
|
240
|
-
$outline-color: rgb(var(--q-theme-primary-rgb) / 0.25);
|
|
237
|
+
$border: #dce3e8 !default;
|
|
238
|
+
$outline-width: 2px !default;
|
|
239
|
+
$outline-style: solid !default;
|
|
240
|
+
$outline-color: rgb(var(--q-theme-primary-rgb) / 0.25) !default;
|
|
241
241
|
$outline: $outline-width $outline-style $outline-color;
|
|
242
242
|
*,
|
|
243
243
|
::after,
|
|
@@ -496,10 +496,11 @@ $btn-outline: var(--q-theme-primary-light);
|
|
|
496
496
|
}
|
|
497
497
|
$input-padding-y: 0.26rem;
|
|
498
498
|
$input-padding-x: 0.25rem;
|
|
499
|
+
$input-height: 31.89px;
|
|
499
500
|
.q-input {
|
|
500
501
|
display: flex;
|
|
501
502
|
align-items: center;
|
|
502
|
-
height:
|
|
503
|
+
height: $input-height;
|
|
503
504
|
width: 100%;
|
|
504
505
|
border-radius: 0.375rem;
|
|
505
506
|
border-width: 1px;
|