diff options
Diffstat (limited to 'src/client/app/mobile/views')
| -rw-r--r-- | src/client/app/mobile/views/pages/favorites.vue | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/client/app/mobile/views/pages/favorites.vue b/src/client/app/mobile/views/pages/favorites.vue index ed6095bd7a..6ca584ec88 100644 --- a/src/client/app/mobile/views/pages/favorites.vue +++ b/src/client/app/mobile/views/pages/favorites.vue @@ -6,7 +6,7 @@ <template v-for="favorite in favorites"> <mk-note-detail class="post" :note="favorite.note" :key="favorite.note.id"/> </template> - <a v-if="existMore" @click="more">{{ $t('@.load-more') }}</a> + <ui-button v-if="existMore" @click="more">{{ $t('@.load-more') }}</ui-button> </main> </mk-ui> </template> @@ -73,8 +73,6 @@ export default Vue.extend({ </script> <style lang="stylus" scoped> - - main width 100% max-width 680px |