summaryrefslogtreecommitdiff
path: root/src/client/components
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2021-02-21 13:34:00 +0900
committersyuilo <syuilotan@yahoo.co.jp>2021-02-21 13:34:00 +0900
commitd8fb729aee7ea30082f3df475e5a29f21925c2c7 (patch)
treeaafadb29ffd42d2d93ae1518d7d47ad4f5aed019 /src/client/components
parentMessagingの入力中インジケータを実装 (diff)
downloadsharkey-d8fb729aee7ea30082f3df475e5a29f21925c2c7.tar.gz
sharkey-d8fb729aee7ea30082f3df475e5a29f21925c2c7.tar.bz2
sharkey-d8fb729aee7ea30082f3df475e5a29f21925c2c7.zip
デザインの調整など
Diffstat (limited to 'src/client/components')
-rw-r--r--src/client/components/notes.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/components/notes.vue b/src/client/components/notes.vue
index ebb87622af..332f00e5db 100644
--- a/src/client/components/notes.vue
+++ b/src/client/components/notes.vue
@@ -8,7 +8,7 @@
<MkError v-if="error" @retry="init()"/>
<div v-show="more && reversed" style="margin-bottom: var(--margin);">
- <MkButton class="_buttonPrimary" style="margin: 0 auto;" @click="fetchMoreFeature" :disabled="moreFetching" :style="{ cursor: moreFetching ? 'wait' : 'pointer' }">
+ <MkButton style="margin: 0 auto;" @click="fetchMoreFeature" :disabled="moreFetching" :style="{ cursor: moreFetching ? 'wait' : 'pointer' }">
<template v-if="!moreFetching">{{ $ts.loadMore }}</template>
<template v-if="moreFetching"><MkLoading inline/></template>
</MkButton>
@@ -19,7 +19,7 @@
</XList>
<div v-show="more && !reversed" style="margin-top: var(--margin);">
- <MkButton class="_buttonPrimary" style="margin: 0 auto;" v-appear="$store.state.enableInfiniteScroll ? fetchMore : null" @click="fetchMore" :disabled="moreFetching" :style="{ cursor: moreFetching ? 'wait' : 'pointer' }">
+ <MkButton style="margin: 0 auto;" v-appear="$store.state.enableInfiniteScroll ? fetchMore : null" @click="fetchMore" :disabled="moreFetching" :style="{ cursor: moreFetching ? 'wait' : 'pointer' }">
<template v-if="!moreFetching">{{ $ts.loadMore }}</template>
<template v-if="moreFetching"><MkLoading inline/></template>
</MkButton>