diff --git a/src/client/components/date-separated-list.vue b/src/client/components/date-separated-list.vue
index a27e9a05a201b069a5e606ca7489669189b8a449..5eb005ef6802b4eda3d4fe098dff61aa0b034b29 100644
--- a/src/client/components/date-separated-list.vue
+++ b/src/client/components/date-separated-list.vue
@@ -69,6 +69,10 @@ export default Vue.extend({
 
 <style lang="scss">
 .sqadhkmv {
+	> *:not(:last-child) {
+		margin-bottom: var(--margin);
+	}
+
 	> .list-move {
 		transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
 	}
diff --git a/src/client/components/notes.vue b/src/client/components/notes.vue
index e8461fcb8d3834265835632e1afad51895ec30a8..7653062ba0f385eb0c936ca308172e080142a493 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>