Web Dev Solutions

Catalin Mititiuc

From 1add30fc6ebf8b17753368a33ecbd8117c4ef50a Mon Sep 17 00:00:00 2001 From: Catalin Mititiuc Date: Tue, 26 Mar 2024 16:16:26 -0700 Subject: 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 -- cgit v1.2.3