From 9008e149bd10e380aa7f47b35e3c0818be415311 Mon Sep 17 00:00:00 2001 From: todayama_r <13657682+Corvus400@users.noreply.github.com> Date: Mon, 11 Sep 2023 22:39:55 +0900 Subject: [PATCH] :recycle: Figma font style is now set in the session time. --- app-ios/Modules/Sources/Timetable/SessionTimeView.swift | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/app-ios/Modules/Sources/Timetable/SessionTimeView.swift b/app-ios/Modules/Sources/Timetable/SessionTimeView.swift index 19a3c7565..1b2916556 100644 --- a/app-ios/Modules/Sources/Timetable/SessionTimeView.swift +++ b/app-ios/Modules/Sources/Timetable/SessionTimeView.swift @@ -9,17 +9,15 @@ struct SessionTimeView: View { var body: some View { VStack(spacing: 4) { Text(startsTimeString) + .textStyle(TypographyTokens.titleMedium) .foregroundStyle(AssetColors.Surface.onSurface.swiftUIColor) - .font(Font.custom(FontAssets.Montserrat.medium, size: 16)) - .fontWeight(.bold) .frame(height: 24) Rectangle() .foregroundColor(AssetColors.Outline.outlineVariant.swiftUIColor) .frame(width: 2, height: 8) Text(endsTimeString) + .textStyle(TypographyTokens.titleMedium) .foregroundStyle(AssetColors.Secondary.secondary.swiftUIColor) - .font(Font.custom(FontAssets.Montserrat.medium, size: 16)) - .fontWeight(.bold) .frame(height: 24) } }