Skip to content

Commit

Permalink
fix: vertical zoom clamp value
Browse files Browse the repository at this point in the history
  • Loading branch information
Truiteseche committed Nov 11, 2024
1 parent 52dc79d commit a560341
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -648,7 +648,7 @@ export default function App({ edpFetch }) {
if (window.innerHeight >= 650) {
document.documentElement.style.zoom = (.35 / 350) * window.innerHeight + .1;
} else {
document.documentElement.style.zoom = .85;
document.documentElement.style.zoom = .75;
}
} else {
document.documentElement.style.fontSize = "";
Expand Down

0 comments on commit a560341

Please sign in to comment.