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,