diff --git a/SodaLive/Sources/Live/Room/V2/LiveRoomViewV2.swift b/SodaLive/Sources/Live/Room/V2/LiveRoomViewV2.swift index c4a8be3..cfc76fe 100644 --- a/SodaLive/Sources/Live/Room/V2/LiveRoomViewV2.swift +++ b/SodaLive/Sources/Live/Room/V2/LiveRoomViewV2.swift @@ -259,19 +259,17 @@ struct LiveRoomViewV2: View { } if viewModel.signatureImageUrl.trimmingCharacters(in: .whitespacesAndNewlines).count > 0 { - HStack { + VStack { Spacer() - VStack(alignment: .trailing, spacing: 0) { - Spacer() - - AnimatedImage(url: URL(string: viewModel.signatureImageUrl)) - .resizable() - .aspectRatio(contentMode: .fit) - .frame(height: 200) - - Spacer() - } + AnimatedImage(url: URL(string: viewModel.signatureImageUrl)) + .resizable() + .aspectRatio(contentMode: .fit) + .frame(width: screenSize().width - 64) + + Spacer() + Spacer() + Spacer() } } }