itube-specs 0.0.796 → 0.0.797
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/components/ui/input.vue +2 -0
- package/package.json +1 -1
package/components/ui/input.vue
CHANGED
|
@@ -236,6 +236,7 @@ const normalizedValue = computed(() => {
|
|
|
236
236
|
transition: var(--transition) transform;
|
|
237
237
|
resize: none;
|
|
238
238
|
font: inherit;
|
|
239
|
+
font-size: 16px;
|
|
239
240
|
border: 1px solid transparent;
|
|
240
241
|
|
|
241
242
|
&:focus {
|
|
@@ -245,6 +246,7 @@ const normalizedValue = computed(() => {
|
|
|
245
246
|
@include from-br(sm) {
|
|
246
247
|
padding-block: 8px;
|
|
247
248
|
padding-inline: 16px;
|
|
249
|
+
font-size: 14px;
|
|
248
250
|
}
|
|
249
251
|
}
|
|
250
252
|
|