fix(main): 현재 라이브 전체 스타일을 보정한다

This commit is contained in:
Yu Sung
2026-08-03 14:06:28 +09:00
parent a8fe416cb5
commit 498debbfc7
3 changed files with 32 additions and 11 deletions

View File

@@ -62,17 +62,10 @@ private struct MainHomeLiveAllItemView: View {
var body: some View {
Button(action: onTapAll) {
VStack(alignment: .center, spacing: SodaSpacing.s6) {
Circle()
.fill(Color.gray800)
.frame(width: 70, height: 70)
.overlay {
Text(I18n.HomeRecommendation.liveAll)
.appFont(.body4)
.foregroundColor(.white)
}
}
.frame(width: 70, height: 102, alignment: .top)
Text(I18n.HomeRecommendation.liveAll)
.appFont(.body5)
.foregroundColor(Color.soda400)
.frame(width: 70, height: 102, alignment: .center)
}
.buttonStyle(.plain)
}