From b1685ce0101f9ca16b0eeb6db7ff16ac81301545 Mon Sep 17 00:00:00 2001 From: Jon Heslop Date: Tue, 15 Oct 2019 22:31:26 +0100 Subject: 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. --- website/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'website') 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; } -- cgit v1.2.3