diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-05-29 14:22:15 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-05-29 14:22:15 +0900 |
| commit | 366b7ef9460fd01051d61bb2d93af440c620bf01 (patch) | |
| tree | 185f3e4a3b3902a708d98753107fa7e8093a5388 /src | |
| parent | 2.22.3 (diff) | |
| download | sharkey-366b7ef9460fd01051d61bb2d93af440c620bf01.tar.gz sharkey-366b7ef9460fd01051d61bb2d93af440c620bf01.tar.bz2 sharkey-366b7ef9460fd01051d61bb2d93af440c620bf01.zip | |
:art:
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/app/desktop/views/components/note-detail.vue | 2 | ||||
| -rw-r--r-- | src/client/app/desktop/views/pages/favorites.vue | 5 |
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> |