From 7b3bb79e2cf1175f2f05a82a482086e35ea9246d Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Tue, 2 Sep 2025 03:51:28 +0900 Subject: [PATCH] =?UTF-8?q?fix(character):=20=EC=B5=9C=EA=B7=BC=20?= =?UTF-8?q?=EB=8C=80=ED=99=94=ED=95=9C=20=EC=BA=90=EB=A6=AD=ED=84=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 좌/우 padding 24 추가 --- .../Chat/Character/Recent/RecentCharacterSectionView.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/SodaLive/Sources/Chat/Character/Recent/RecentCharacterSectionView.swift b/SodaLive/Sources/Chat/Character/Recent/RecentCharacterSectionView.swift index 66e4db9..f929d8a 100644 --- a/SodaLive/Sources/Chat/Character/Recent/RecentCharacterSectionView.swift +++ b/SodaLive/Sources/Chat/Character/Recent/RecentCharacterSectionView.swift @@ -23,6 +23,7 @@ struct RecentCharacterSectionView: View { .foregroundColor(Color(hex: "FDCA2F")) Spacer() } + .padding(.horizontal, 24) ScrollView(.horizontal, showsIndicators: false) { HStack(spacing: 16) { @@ -32,6 +33,7 @@ struct RecentCharacterSectionView: View { .onTapGesture { onTap(item) } } } + .padding(.horizontal, 24) } } }