diff --git a/app/components/malio/input/InputTextArea.vue b/app/components/malio/input/InputTextArea.vue index d8a25a5..a3f2c85 100644 --- a/app/components/malio/input/InputTextArea.vue +++ b/app/components/malio/input/InputTextArea.vue @@ -19,6 +19,7 @@ textInput, showCounterComputed ? 'pb-6' : '', rounded, + keyboardFocused ? 'm-focus-ring-kbd' : '', ]" :required="required" :maxlength="maxLength" @@ -32,8 +33,8 @@ v-bind="attrs" placeholder="_" @input="onInput" - @focus="isFocused = true" - @blur="isFocused = false" + @focus="isFocused = true; onKbdFocus()" + @blur="isFocused = false; onKbdBlur()" />