diff --git a/frontend/src/styles/main.css b/frontend/src/styles/main.css index 542aa1a..870b716 100644 --- a/frontend/src/styles/main.css +++ b/frontend/src/styles/main.css @@ -14,13 +14,13 @@ body { background-color: var(--dark-gray); color: var(--light-gray); display: grid; - grid-template-columns: 1fr auto 1fr; + grid-template-columns: 1fr 1440px 1fr; grid-template-rows: auto; } body > div { grid-column: 2; - max-width: 144rem; + max-width: 1440px; } tesoft-nav { @@ -31,3 +31,9 @@ tesoft-nav { main { padding: 0 0.5rem 0 0.5rem; } + +@media (max-width: 1440px) { + body { + grid-template-columns: 0 1fr 0; + } +}