From dd4d8fa2646a18819da52f78fd777832c1c7307a Mon Sep 17 00:00:00 2001 From: Catalin Constantin Mititiuc Date: Mon, 16 Jun 2025 22:41:28 -0700 Subject: [PATCH] Shift layout when viewport is large enough to accomodate --- style.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/style.css b/style.css index 45af2fb..5ea3cd0 100644 --- a/style.css +++ b/style.css @@ -9,7 +9,6 @@ div#content { body { margin: 0; - display: flex; } circle#point { @@ -148,4 +147,10 @@ rect#debug-view-box { stroke-width: 20px; */ fill: blue; fill-opacity: 0.2; +} + +@media (width >= 1800px) { + body { + display: flex; + } } \ No newline at end of file