Skip to content

Commit

Permalink
♻️ Figma font style is now set in the session time.
Browse files Browse the repository at this point in the history
  • Loading branch information
Corvus400 committed Sep 11, 2023
1 parent 52f0ba5 commit 9008e14
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions app-ios/Modules/Sources/Timetable/SessionTimeView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
}
Expand Down

0 comments on commit 9008e14

Please sign in to comment.