From ea19bb9ea76e333e48772e3b4d8efbdc0dcfbbe17943678f62ef8e094e1462d5 Mon Sep 17 00:00:00 2001 From: Nicholas Johnson Date: Thu, 4 Aug 2022 00:00:00 +0000 Subject: Replace and reduce pixel width limit with ems --- static/css/style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/static/css/style.css b/static/css/style.css index 618bb5f..75dd0b3 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -31,9 +31,9 @@ body { margin: 0 auto; /* remove default styling */ } -@media only screen and (min-width: 780px) { +@media only screen and (min-width: 40em) { body { - max-width: 780px; + max-width: 40em; } } -- cgit v1.2.3