diff --git a/InitUiElements.ts b/InitUiElements.ts index fb1382ed1b..5be908fad5 100644 --- a/InitUiElements.ts +++ b/InitUiElements.ts @@ -202,7 +202,7 @@ export class InitUiElements { const plus = new MapControlButton( new CenterFlexedElement( - Img.AsImageElement(Svg.plus_zoom, "", "width:1.5rem;height:1.5rem") + Img.AsImageElement(Svg.plus_zoom, "", "width:1.25rem;height:1.25rem") ) ).onClick(() => { State.state.locationControl.data.zoom++; @@ -211,7 +211,7 @@ export class InitUiElements { const min = new MapControlButton( new CenterFlexedElement( - Img.AsImageElement(Svg.min_zoom, "", "width:1.5rem;height:1.5rem") + Img.AsImageElement(Svg.min_zoom, "", "width:1.25rem;height:1.25rem") ) ).onClick(() => { State.state.locationControl.data.zoom--; diff --git a/Logic/Actors/GeoLocationHandler.ts b/Logic/Actors/GeoLocationHandler.ts index fb011dd59d..8ea2886b42 100644 --- a/Logic/Actors/GeoLocationHandler.ts +++ b/Logic/Actors/GeoLocationHandler.ts @@ -73,16 +73,16 @@ export default class GeoLocationHandler extends VariableUiElement { (hasLocation) => { if (hasLocation) { return new CenterFlexedElement( - Img.AsImageElement(Svg.location, "", "width:1.5rem;height:1.5rem") + Img.AsImageElement(Svg.location, "", "width:1.25rem;height:1.25rem") ); // crosshair_blue_ui() } if (isActive.data) { return new CenterFlexedElement( - Img.AsImageElement(Svg.location, "", "width:1.5rem;height:1.5rem") + Img.AsImageElement(Svg.location, "", "width:1.25rem;height:1.25rem") ); // crosshair_blue_center_ui } return new CenterFlexedElement( - Img.AsImageElement(Svg.location, "", "width:1.5rem;height:1.5rem") + Img.AsImageElement(Svg.location, "", "width:1.25rem;height:1.25rem") ); //crosshair_ui }, [isActive]