new color and icon for navigation

This commit is contained in:
Ward 2021-07-19 16:32:54 +02:00
parent bd1b29e344
commit 3a16518bcb
2 changed files with 5 additions and 5 deletions

View file

@ -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]