summaryrefslogtreecommitdiff
path: root/src/client/components/note.vue
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2020-03-21 12:32:40 +0900
committersyuilo <syuilotan@yahoo.co.jp>2020-03-21 12:32:40 +0900
commitf1fc12d9cc779fe2a2ec9e072912bc197d5e23b1 (patch)
tree48fbd64d6e143cf0d51f1f81aa3a1d3fbf87590b /src/client/components/note.vue
parentwip (diff)
downloadsharkey-f1fc12d9cc779fe2a2ec9e072912bc197d5e23b1.tar.gz
sharkey-f1fc12d9cc779fe2a2ec9e072912bc197d5e23b1.tar.bz2
sharkey-f1fc12d9cc779fe2a2ec9e072912bc197d5e23b1.zip
wip
Diffstat (limited to 'src/client/components/note.vue')
-rw-r--r--src/client/components/note.vue6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/client/components/note.vue b/src/client/components/note.vue
index 6850ebd14a..db669309d3 100644
--- a/src/client/components/note.vue
+++ b/src/client/components/note.vue
@@ -79,7 +79,7 @@
<div class="deleted" v-if="appearNote.deletedAt != null">{{ $t('deleted') }}</div>
</div>
</article>
- <x-sub v-for="note in replies" :key="note.id" :note="note"/>
+ <x-sub v-for="note in replies" :key="note.id" :note="note" class="reply"/>
</div>
</template>
@@ -935,5 +935,9 @@ export default Vue.extend({
}
}
}
+
+ > .reply {
+ border-top: solid 1px var(--divider);
+ }
}
</style>