Skip to content

Commit

Permalink
Fix north arrow icon
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrunner committed Jan 27, 2025
1 parent 6b3a632 commit 998561e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/controllers/AbstractAppController.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// The MIT License (MIT)
//
// Copyright (c) 2015-2024 Camptocamp SA
// Copyright (c) 2015-2025 Camptocamp SA
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of
// this software and associated documentation files (the "Software"), to deal in
Expand Down Expand Up @@ -799,8 +799,9 @@ AbstractAppController.prototype.setDefaultBackground_ = function (theme) {
*/
export function getLocationIcon() {
const arrow = document.createElement('span');
arrow.className = 'fa-solid fa-location-crosshairs-arrow';
arrow.className = 'fa-solid fa-location-arrow';
arrow.style.transform = 'rotate(-0.82rad)';
arrow.style.fontSize = '1.3em';
const arrowWrapper = document.createElement('span');
arrowWrapper.appendChild(arrow);
return arrowWrapper;
Expand Down

0 comments on commit 998561e

Please sign in to comment.