Skip to content

Commit b09d7a4

Browse files
committed
(fix) remove mobile textarea border with files
1 parent 08c7d2e commit b09d7a4

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

src/lib/Room/Room.scss

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,8 +235,11 @@
235235
}
236236

237237
.vac-box-footer {
238-
border-top: var(--chat-border-style-input);
239238
padding: 7px 2px 7px 7px;
239+
240+
&.vac-box-footer-border {
241+
border-top: var(--chat-border-style-input);
242+
}
240243
}
241244

242245
.vac-text-started {

src/lib/Room/Room.vue

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,10 @@
184184
</template>
185185
</room-files>
186186

187-
<div class="vac-box-footer">
187+
<div
188+
class="vac-box-footer"
189+
:class="{ 'vac-box-footer-border': !files.length }"
190+
>
188191
<div v-if="showAudio && !files.length" class="vac-icon-textarea-left">
189192
<template v-if="isRecording">
190193
<div

0 commit comments

Comments
 (0)