Skip to content

Commit

Permalink
Merge pull request #259 from Vizzuality/develop
Browse files Browse the repository at this point in the history
production deploy
  • Loading branch information
andresgnlez authored Apr 15, 2024
2 parents 0c16676 + d9b9b31 commit 6089c85
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion frontend/src/containers/map/content/map/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,8 @@ const MainMap: React.FC = () => {
padding: {
top: 0,
bottom: 0,
left: isSidebarOpen ? 430 : 0,
left:
typeof window !== 'undefined' && window?.innerWidth > 430 && isSidebarOpen ? 430 : 0,
right: 0,
},
},
Expand Down

0 comments on commit 6089c85

Please sign in to comment.