Skip to content

Commit

Permalink
Fix indentation problem
Browse files Browse the repository at this point in the history
  • Loading branch information
tananaev committed Sep 12, 2024
1 parent 48c9aa5 commit 8b6ed6f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/map/core/MapView.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ export const map = new maplibregl.Map({
map.on('load', () => {
const container = document.querySelector('.maplibregl-ctrl-bottom-right');
if (container) {
container.style.display = 'flex';
container.style.flexDirection = 'row';
container.style.alignItems = 'flex-end';
container.style.display = 'flex';
container.style.flexDirection = 'row';
container.style.alignItems = 'flex-end';
}
});

Expand Down

0 comments on commit 8b6ed6f

Please sign in to comment.