summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-05-29 14:22:15 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-05-29 14:22:15 +0900
commit366b7ef9460fd01051d61bb2d93af440c620bf01 (patch)
tree185f3e4a3b3902a708d98753107fa7e8093a5388
parent2.22.3 (diff)
downloadsharkey-366b7ef9460fd01051d61bb2d93af440c620bf01.tar.gz
sharkey-366b7ef9460fd01051d61bb2d93af440c620bf01.tar.bz2
sharkey-366b7ef9460fd01051d61bb2d93af440c620bf01.zip
:art:
-rw-r--r--src/client/app/desktop/views/components/note-detail.vue2
-rw-r--r--src/client/app/desktop/views/pages/favorites.vue5
2 files changed, 4 insertions, 3 deletions
diff --git a/src/client/app/desktop/views/components/note-detail.vue b/src/client/app/desktop/views/components/note-detail.vue
index 63b2150110..a8accaf531 100644
--- a/src/client/app/desktop/views/components/note-detail.vue
+++ b/src/client/app/desktop/views/components/note-detail.vue
@@ -218,8 +218,6 @@ export default Vue.extend({
@import '~const.styl'
root(isDark)
- margin 0 auto
- padding 0
overflow hidden
text-align left
background isDark ? #282C37 : #fff
diff --git a/src/client/app/desktop/views/pages/favorites.vue b/src/client/app/desktop/views/pages/favorites.vue
index 71d36cdf2b..8adb9412f2 100644
--- a/src/client/app/desktop/views/pages/favorites.vue
+++ b/src/client/app/desktop/views/pages/favorites.vue
@@ -2,7 +2,7 @@
<mk-ui>
<main v-if="!fetching">
<template v-for="favorite in favorites">
- <mk-note-detail :note="favorite.note" :key="favorite.note.id"/>
+ <mk-note-detail class="post" :note="favorite.note" :key="favorite.note.id"/>
</template>
<a v-if="existMore" @click="more">%i18n:@more%</a>
</main>
@@ -70,4 +70,7 @@ main
margin 0 auto
padding 16px
max-width 700px
+
+ > .post
+ margin-bottom 16px
</style>