Shift layout when viewport is large enough to accomodate

This commit is contained in:
Catalin Mititiuc 2024-03-26 16:16:26 -07:00
parent 77bbf5b826
commit 1add30fc6e

View File

@ -9,7 +9,6 @@ div#content {
body { body {
margin: 0; margin: 0;
display: flex;
} }
circle#point { circle#point {
@ -148,4 +147,10 @@ rect#debug-view-box {
stroke-width: 20px; */ stroke-width: 20px; */
fill: blue; fill: blue;
fill-opacity: 0.2; fill-opacity: 0.2;
}
@media (width >= 1800px) {
body {
display: flex;
}
} }