diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2019-02-27 16:47:13 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2019-02-27 16:47:13 +0900 |
| commit | 9789b9a083f56fff5f6856ea76a936a86419c6d5 (patch) | |
| tree | 63cf18bc102ae167429c568421b1977b3a027567 /src/client/app/mobile/views/components/note-detail.vue | |
| parent | :art: (diff) | |
| download | misskey-9789b9a083f56fff5f6856ea76a936a86419c6d5.tar.gz misskey-9789b9a083f56fff5f6856ea76a936a86419c6d5.tar.bz2 misskey-9789b9a083f56fff5f6856ea76a936a86419c6d5.zip | |
:art:
Diffstat (limited to 'src/client/app/mobile/views/components/note-detail.vue')
| -rw-r--r-- | src/client/app/mobile/views/components/note-detail.vue | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/client/app/mobile/views/components/note-detail.vue b/src/client/app/mobile/views/components/note-detail.vue index 46bca949c9..d9269cf7c2 100644 --- a/src/client/app/mobile/views/components/note-detail.vue +++ b/src/client/app/mobile/views/components/note-detail.vue @@ -1,5 +1,5 @@ <template> -<div class="mk-note-detail" tabindex="-1" :class="{ shadow: $store.state.device.useShadow }"> +<div class="mk-note-detail" tabindex="-1" :class="{ shadow: $store.state.device.useShadow, round: $store.state.device.roundedCorners }"> <button class="more" v-if="appearNote.reply && appearNote.reply.replyId && conversation.length == 0" @@ -164,7 +164,9 @@ export default Vue.extend({ width 100% text-align left background var(--face) - border-radius 8px + + &.round + border-radius 8px &.shadow box-shadow 0 4px 16px rgba(#000, 0.1) |