feat(original): 작품별 상세 UI

- 블러 처리한 배경의 세로 크기 절반으로 축소
This commit is contained in:
Yu Sung
2025-09-24 17:30:51 +09:00
parent b6ca6331f3
commit e62c89d7bc

View File

@@ -21,8 +21,9 @@ struct OriginalWorkDetailView: View {
if let imageUrl = viewModel.response?.imageUrl {
KFImage(URL(string: imageUrl))
.resizable()
.scaledToFit()
.frame(maxWidth: .infinity)
.scaledToFill()
.frame(width: screenSize().width, height: (168 * 288 / 306) + 56)
.clipped()
.blur(radius: 25)
}