diff --git a/SodaLive/Sources/Live/Room/V2/LiveRoomViewV2.swift b/SodaLive/Sources/Live/Room/V2/LiveRoomViewV2.swift index 15bf8d7..c4a8be3 100644 --- a/SodaLive/Sources/Live/Room/V2/LiveRoomViewV2.swift +++ b/SodaLive/Sources/Live/Room/V2/LiveRoomViewV2.swift @@ -259,16 +259,19 @@ struct LiveRoomViewV2: View { } if viewModel.signatureImageUrl.trimmingCharacters(in: .whitespacesAndNewlines).count > 0 { - VStack(spacing: 0) { + HStack { Spacer() - AnimatedImage(url: URL(string: viewModel.signatureImageUrl)) - .resizable() - .aspectRatio(contentMode: .fit) - .frame(height: 300) - .frame(maxWidth: .infinity) - .padding(.horizontal, 20) - .padding(.bottom, 65) + VStack(alignment: .trailing, spacing: 0) { + Spacer() + + AnimatedImage(url: URL(string: viewModel.signatureImageUrl)) + .resizable() + .aspectRatio(contentMode: .fit) + .frame(height: 200) + + Spacer() + } } } }