We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60843fe commit 8b206fdCopy full SHA for 8b206fd
packages/frontend/src/components/MkPostFormSimple.vue
@@ -81,7 +81,7 @@ SPDX-License-Identifier: AGPL-3.0-only
81
<div v-if="targetChannel" :class="$style.colorBar" :style="{ background: targetChannel.color }"></div>
82
<textarea ref="textareaEl" v-model="text" :class="[$style.text]" :disabled="posting || posted" :readonly="textAreaReadOnly" :placeholder="placeholder" data-cy-post-form-text @click="formClick" @keydown="onKeydown" @keyup="onKeyup" @paste="onPaste" @compositionupdate="onCompositionUpdate" @compositionend="onCompositionEnd"/>
83
<div v-if="maxTextLength - textLength < 100" :class="['_acrylic', $style.textCount, { [$style.textOver]: textLength > maxTextLength }]">{{ maxTextLength - textLength }}</div>
84
- <div v-if="!showForm" style="position: fixed; bottom: 0; right: 8px;" :class="$style.submit">
+ <div v-if="!showForm" style="position: absolute; bottom: 0; right: 8px;" :class="$style.submit">
85
<button v-click-anime class="_button" :class="$style.submitButton" :disabled="!canPost && $i" data-cy-open-post-form-submit @click="$i ? post : signin()">
86
<div :class="$style.submitInner">
87
<template v-if="posted"></template>
0 commit comments