summaryrefslogtreecommitdiff
path: root/src/client/components/notes.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/components/notes.vue')
-rw-r--r--src/client/components/notes.vue11
1 files changed, 1 insertions, 10 deletions
diff --git a/src/client/components/notes.vue b/src/client/components/notes.vue
index e8461fcb8d..7653062ba0 100644
--- a/src/client/components/notes.vue
+++ b/src/client/components/notes.vue
@@ -14,7 +14,7 @@
</button>
</div>
- <x-list ref="notes" class="notes" :items="notes" v-slot="{ item: note }" :direction="reversed ? 'up' : 'down'" :reversed="reversed">
+ <x-list ref="notes" :items="notes" v-slot="{ item: note }" :direction="reversed ? 'up' : 'down'" :reversed="reversed">
<x-note :note="note" :detail="detail" :key="note._featuredId_ || note._prId_ || note.id"/>
</x-list>
@@ -85,12 +85,3 @@ export default Vue.extend({
});
</script>
-<style lang="scss" scoped>
-.mk-notes {
- > .notes {
- > ::v-deep *:not(:last-child) {
- margin-bottom: var(--margin);
- }
- }
-}
-</style>