Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
theosanderson committed Feb 15, 2023
1 parent 030739f commit 8beab74
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -642,8 +642,8 @@ function App() {

let rowWidth= Math.floor(width*.0965/(2**zoomLevel));
// rowWidth minimum 50
if (rowWidth < 40) {
rowWidth = 40;
if (rowWidth < 30) {
rowWidth = 30;
}
//console.log("rowWidth", rowWidth);

Expand Down

1 comment on commit 8beab74

@vercel
Copy link

@vercel vercel bot commented on 8beab74 Feb 15, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.