Skip to content

Commit 8b206fd

Browse files
committed
fix: 返信ボタンが誤った位置に表示される
1 parent 60843fe commit 8b206fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/frontend/src/components/MkPostFormSimple.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ SPDX-License-Identifier: AGPL-3.0-only
8181
<div v-if="targetChannel" :class="$style.colorBar" :style="{ background: targetChannel.color }"></div>
8282
<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"/>
8383
<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">
84+
<div v-if="!showForm" style="position: absolute; bottom: 0; right: 8px;" :class="$style.submit">
8585
<button v-click-anime class="_button" :class="$style.submitButton" :disabled="!canPost && $i" data-cy-open-post-form-submit @click="$i ? post : signin()">
8686
<div :class="$style.submitInner">
8787
<template v-if="posted"></template>

0 commit comments

Comments
 (0)