fix(character): 최근 대화한 캐릭터

- 좌/우 padding 24 추가
This commit is contained in:
Yu Sung
2025-09-02 03:51:28 +09:00
parent 7c031daebf
commit 7b3bb79e2c

View File

@@ -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)
}
}
}