X-Git-Url: https://git.r.bdr.sh/rbdr/map/blobdiff_plain/491463f421c86d3a7a5482108b818aa5b5e441ea..77d0155b661e813a85a7312ed809fc7e5a9f7440:/Map/MapRenderComponents/MapAxes.swift?ds=inline diff --git a/Map/MapRenderComponents/MapAxes.swift b/Map/MapRenderComponents/MapAxes.swift index e7d65f4..a6e2f87 100644 --- a/Map/MapRenderComponents/MapAxes.swift +++ b/Map/MapRenderComponents/MapAxes.swift @@ -8,7 +8,7 @@ struct MapAxes: View { let lineWidth: CGFloat let evolution: Stage let stages: [CGFloat] - let stageHeight = CGFloat(50.0) + let stageHeight = CGFloat(100.0) let padding = CGFloat(5.0) var color: Color { @@ -40,13 +40,13 @@ struct MapAxes: View { Text("Uncharted") .font(.title3) .foregroundColor(color) - .frame(width: mapSize.width / 4, height: stageHeight, alignment: .topLeading) - .offset(CGSize(width: 0.0, height: -stageHeight / 2.0)) + .frame(width: mapSize.width / 4, height: stageHeight / 2.0, alignment: .topLeading) + .offset(CGSize(width: 0.0, height: -stageHeight / 4.0)) Text("Industrialised") .font(.title3) .foregroundColor(color) - .frame(width: mapSize.width / 4, height: stageHeight, alignment: .topLeading) - .offset(CGSize(width: mapSize.width - 100.0, height: -stageHeight / 2.0)) + .frame(width: mapSize.width / 4, height: stageHeight / 2.0, alignment: .topLeading) + .offset(CGSize(width: mapSize.width - 100.0, height: -stageHeight / 4.0)) Text(evolution.i) .font(.title3)