From 2724d483bf3c839e886dd8d1a47a705cb1c43374 Mon Sep 17 00:00:00 2001 From: megavrilinvv Date: Thu, 18 May 2023 12:28:44 +0300 Subject: [PATCH] =?UTF-8?q?[WIP]=20=D0=A4=D0=B8=D0=BA=D1=81=20=D1=88=D1=80?= =?UTF-8?q?=D0=B8=D1=84=D1=82=D0=B0=20=D0=B8=D0=BD=D0=BF=D1=83=D1=82=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/base/BaseInput.vue | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/src/components/base/BaseInput.vue b/src/components/base/BaseInput.vue index 1ef0432..75d9f4f 100644 --- a/src/components/base/BaseInput.vue +++ b/src/components/base/BaseInput.vue @@ -5,7 +5,7 @@ :name="name", :multiple="multiple" :class="{'circle': circle, 'font-input': true, 'doc': doc}", - :input-style="{ color: textColor, borderColor: borderColor, resize: resize}", + :input-style="{ color: textColor, borderColor: borderColor, resize: resize, fontSize: fontSize, fontWeight: fontWeight, lineHeight: lineHeight}", :borderless="borderless", :placeholder="placeholder", :outlined="outlined", @@ -48,6 +48,18 @@ export default { type: Boolean, default: true, }, + fontSize: { + type: String, + default: "14px", + }, + fontWeight: { + type: Number, + default: 500, + }, + lineHeight: { + type: String, + default: "19px", + }, outlined: { type: Boolean, default: false,