diff options
Diffstat (limited to 'Map/Presentation/Theme/Dimensions.swift')
| -rw-r--r-- | Map/Presentation/Theme/Dimensions.swift | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/Map/Presentation/Theme/Dimensions.swift b/Map/Presentation/Theme/Dimensions.swift index 5597c4e..94ab7c0 100644 --- a/Map/Presentation/Theme/Dimensions.swift +++ b/Map/Presentation/Theme/Dimensions.swift @@ -22,7 +22,7 @@ struct Dimensions { static let body: CGFloat = 13 static let title: CGFloat = 32 static let caption: CGFloat = 11 - static let smallControl: CGFloat = 9 + static let smallControl: CGFloat = 11 struct Map { static let note: CGFloat = 12 @@ -43,7 +43,7 @@ struct Dimensions { static let vertexLabel: CGFloat = 18 } } - + struct Kerning { static let body: CGFloat = 0.5 } @@ -66,25 +66,30 @@ struct Dimensions { } // MARK: - Assorted Controls - + struct EvolutionPicker { static let radius = 8.0 static let controlSize = 8.0 static let controlSpacing = 3.0 } - + struct Preferences { - + struct Window { static let width: CGFloat = 600.0 static let height: CGFloat = 400.0 } - + struct Toolbar { static let radius: CGFloat = 8.0 static let size: CGFloat = 16.0 static let width: CGFloat = 60.0 static let height: CGFloat = 40.0 } + + struct Sidebar { + static let radius: CGFloat = 8.0 + static let width: CGFloat = 200.0 + } } } |