diff options
author | Jon Heslop <jon@jonheslop.com> | 2019-10-15 22:31:26 +0100 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-10-15 17:31:26 -0400 |
commit | b1685ce0101f9ca16b0eeb6db7ff16ac81301545 (patch) | |
tree | 2790d7d7541d6d565cdb2dcc4c0a6c83177def4a | |
parent | 54db12c4d979bff8f8ebd0dbfe981052c12cb315 (diff) |
Use max-width over max-device-width (#3132)
Using max-width because this applies the mobile styles to narrow windows
on larger devices as well as full with windows on narrow devices.
-rw-r--r-- | website/style.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/website/style.css b/website/style.css index 7c45995c5..57a3cba15 100644 --- a/website/style.css +++ b/website/style.css @@ -140,7 +140,7 @@ header h1 { margin: 8px 0; } -@media only screen and (max-device-width: 480px) { +@media only screen and (max-width: 480px) { body { margin: 0; } |