Skip to content
This repository has been archived by the owner on Jan 10, 2024. It is now read-only.

Commit

Permalink
Increase text size of lecture content next to icons (#435)
Browse files Browse the repository at this point in the history
  • Loading branch information
philippzagar authored May 12, 2022
1 parent 8ba05f1 commit e671bf1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Campus-iOS/LectureComponent/Views/LectureView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ struct LectureView: View {
.frame(width: 12, height: 12)
.foregroundColor(Color("tumBlue"))
Text(lecture.eventType)
.font(.system(size: 12))
.font(.system(size: 15))
Spacer()
}
.frame(minWidth: 0, maxWidth: .infinity)
Expand All @@ -35,7 +35,7 @@ struct LectureView: View {
.frame(width: 12, height: 12)
.foregroundColor(Color("tumBlue"))
Text(lecture.duration + " SWS")
.font(.system(size: 12))
.font(.system(size: 15))
Spacer()
}
.frame(minWidth: 0, maxWidth: .infinity)
Expand All @@ -46,7 +46,7 @@ struct LectureView: View {
.frame(width: 12, height: 12)
.foregroundColor(Color("tumBlue"))
Text(lecture.speaker)
.font(.system(size: 12))
.font(.system(size: 15))
.fixedSize(horizontal: false, vertical: true)
}.foregroundColor(.init(.darkGray))
}
Expand Down

0 comments on commit e671bf1

Please sign in to comment.