diff --git a/SodaLive/Sources/Live/Room/V2/LiveRoomViewV2.swift b/SodaLive/Sources/Live/Room/V2/LiveRoomViewV2.swift index a1c0778..5aae49c 100644 --- a/SodaLive/Sources/Live/Room/V2/LiveRoomViewV2.swift +++ b/SodaLive/Sources/Live/Room/V2/LiveRoomViewV2.swift @@ -334,8 +334,8 @@ struct LiveRoomViewV2: View { if viewModel.isShowMenuPan { VStack(alignment: .leading, spacing: 0) { Image("ic_notice_triangle") - .padding(.leading, 60) - ScrollView(.vertical, showsIndicators: false) { + + ScrollView(.vertical) { VStack(alignment: .leading, spacing: 8) { Text("[메뉴판]") .font(.custom(Font.bold.rawValue, size: 11.3)) @@ -349,16 +349,16 @@ struct LiveRoomViewV2: View { .background(GeometryReader { geometry in Color.clear.preference(key: TextViewHeightKey.self, value: geometry.size.height) }) + .padding(8) } - .padding(8) .background(Color.gray33) - .padding(.horizontal, 60) - .frame(maxWidth: 350) - .frame(height: menuTextHeight > 500 ? 500 : menuTextHeight, alignment: .topLeading) + .frame(height: menuTextHeight > 500 ? 500 : menuTextHeight) .onPreferenceChange(TextViewHeightKey.self) { value in menuTextHeight = value + 15 } } + .frame(maxWidth: 350, alignment: .leading) + .padding(.leading, 60) } } }