Skip to content

Commit

Permalink
Fixes an issue that 100 is cut off in PhysiologyView.
Browse files Browse the repository at this point in the history
  • Loading branch information
mntone committed Jan 13, 2024
1 parent 0a8282c commit 60114be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/App/Views/Physiologies/PhysiologyViewMetrics.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ enum PhysiologyViewMetrics {
static let textStyle: Font.TextStyle = .body
static let defaultFontSize: CGFloat = 13
static let headerBaseWidth: CGFloat = 100
static let itemBaseWidth: CGFloat = 24
static let itemBaseWidth: CGFloat = 28
static let maxWidth: CGFloat = 600

static let margin: EdgeInsets = EdgeInsets(top: 8, leading: 4, bottom: 4, trailing: 4)
static let padding: EdgeInsets = EdgeInsets(top: 4, leading: 12, bottom: 4, trailing: 12)
static let spacing: CGFloat = 8
static let spacing: CGFloat = 4
#elseif os(watchOS)
static let textStyle: Font.TextStyle = .caption2
static let defaultFontSize: CGFloat = 14
Expand Down

0 comments on commit 60114be

Please sign in to comment.