commit da970d49d3a562d29890b1bd64898d58b7621236 parent 50a169d4a69d656c3b9936ccd69c2738d7f2f502 Author: nikita <nikita@n0.is> Date: Mon, 1 Jun 2020 16:03:40 +0200 css: 100% not 70% Diffstat:
| M | css/main.css | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/css/main.css b/css/main.css @@ -9,9 +9,9 @@ BODY { width: 70%; } -@media screen and (min-width 300px) and (max-width: 500px) { +@media screen and (min-width: 300px) and (max-width: 500px) { BODY { - width: 70%; + width: 100%; } }