From 0c56144f929ddca8d3d2110c2d25bc2ea5502fb6 Mon Sep 17 00:00:00 2001
From: Freeplay <Freeplay@duck.com>
Date: Wed, 15 Mar 2023 19:53:22 -0400
Subject: [PATCH] fix line alignment in smaller windows

---
 packages/client/src/components/MkNoteSub.vue | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/packages/client/src/components/MkNoteSub.vue b/packages/client/src/components/MkNoteSub.vue
index 14bcf5826..e90c3da14 100644
--- a/packages/client/src/components/MkNoteSub.vue
+++ b/packages/client/src/components/MkNoteSub.vue
@@ -286,14 +286,14 @@ const replies: misskey.entities.Note[] = props.conversation?.filter(item => item
 				--avatarSize: 24px;
 				--indent: calc(var(--avatarSize) - 4px);
 			}
-			&.firstColumn {
-				> .main, > .line, > .children:not(.single) > .line {
-					--avatarSize: 35px;
-					--indent: 35px;
-				}
-				> .children:not(.single) {
-					padding-left: 28px !important;
-				}
+		}
+		.firstColumn {
+			> .main, > .line, > .children:not(.single) > .line {
+				--avatarSize: 35px;
+				--indent: 35px;
+			}
+			> .children:not(.single) {
+				padding-left: 28px !important;
 			}
 		}
 	}