Commit 694b5675 authored by Kevin Lyda's avatar Kevin Lyda 💬
Browse files

Only tweak it for smaller screens (sigh).

parent 4b1d3273
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -80,9 +80,9 @@ function check_cuberoot(e) {
}

window.onload = function() {
  if (screen.size <= 480) {
  if (screen.width <= 480) {
    document.body.style.fontSize = "8vw";
  } else if (screen.size <= 1024) {
  } else if (screen.width <= 1024) {
    document.body.style.fontSize = "6vw";
  }
}