fix: 메인 홈 - 이벤트 배너, 오디션 배너 사이즈 수정
- 이벤트 배너: 좌우 마진 제거 - 오디션 배너: 좌우 마진 제거, 352x120 비율로 변경
This commit is contained in:
@@ -27,8 +27,8 @@ struct SectionEventBannerView: View {
|
||||
.resizable()
|
||||
.scaledToFill()
|
||||
.frame(
|
||||
width: screenSize().width - 48,
|
||||
height: (screenSize().width - 48) * 300 / 1000,
|
||||
width: screenSize().width,
|
||||
height: screenSize().width * 300 / 1000,
|
||||
alignment: .center
|
||||
)
|
||||
.tag(index)
|
||||
@@ -49,8 +49,8 @@ struct SectionEventBannerView: View {
|
||||
.resizable()
|
||||
.scaledToFill()
|
||||
.frame(
|
||||
width: screenSize().width - 48,
|
||||
height: (screenSize().width - 48) * 300 / 1000,
|
||||
width: screenSize().width,
|
||||
height: screenSize().width * 300 / 1000,
|
||||
alignment: .center
|
||||
)
|
||||
.tag(index)
|
||||
|
||||
Reference in New Issue
Block a user