diff options
author | Nicholas Johnson <nick@nicksphere.ch> | 2022-08-04 00:00:00 +0000 |
---|---|---|
committer | Nicholas Johnson <nick@nicksphere.ch> | 2022-08-04 00:00:00 +0000 |
commit | ea19bb9ea76e333e48772e3b4d8efbdc0dcfbbe17943678f62ef8e094e1462d5 (patch) | |
tree | e352926485d7186f6485e1f38ff4248c11659f98fb0cd0b1564747a4d585389c /static/css/style.css | |
parent | b84871a256dd02f4d7e909c738f74a98a9b69a974261b9e58a5f1dfa3c3888a4 (diff) | |
download | hugo-theme-journal-ea19bb9ea76e333e48772e3b4d8efbdc0dcfbbe17943678f62ef8e094e1462d5.tar.gz hugo-theme-journal-ea19bb9ea76e333e48772e3b4d8efbdc0dcfbbe17943678f62ef8e094e1462d5.zip |
Replace and reduce pixel width limit with ems
Diffstat (limited to 'static/css/style.css')
-rw-r--r-- | static/css/style.css | 4 |
1 files 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; } } |