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