diff options
| author | Ruben Beltran del Rio <git@r.bdr.sh> | 2025-07-06 12:45:37 +0200 |
|---|---|---|
| committer | Ruben Beltran del Rio <git@r.bdr.sh> | 2025-07-06 12:45:37 +0200 |
| commit | 54f89bcd1a7fb0b92b65d8c0ea3847d635e11133 (patch) | |
| tree | da6c1e3f015c4b21a2e32854cadb09e71f9079e7 /Map/Presentation/Theme/Dimensions.swift | |
| parent | 3cd8f1f7200109d505b5e105d5ebe53f0c93d337 (diff) | |
Allow adding and removing templates
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 + } } } |