diff --git a/templates/index.html b/templates/index.html index 2fece35..49bb430 100644 --- a/templates/index.html +++ b/templates/index.html @@ -50,11 +50,11 @@ margin-right: 4px; } main { - max-width: 1100px; + max-width: 1600px; margin: 0 auto; padding: 32px; display: grid; - grid-template-columns: 1fr 1fr; + grid-template-columns: 440px 1fr; gap: 24px; align-items: start; } @@ -64,7 +64,10 @@ max-height: calc(100vh - 32px); overflow-y: auto; } - @media (max-width: 800px) { + @media (max-width: 1100px) { + main { grid-template-columns: 380px 1fr; } + } + @media (max-width: 900px) { main { grid-template-columns: 1fr; } main > section.card:first-of-type { position: static;