diff --git a/components/Current/Preamble/preamble.module.css b/components/Current/Preamble/preamble.module.css index 09cfe99d3..9a4269c77 100644 --- a/components/Current/Preamble/preamble.module.css +++ b/components/Current/Preamble/preamble.module.css @@ -2,9 +2,9 @@ display: grid; gap: 60px; margin: 0 auto; - max-width: 1200px; padding: 20px 10px 25px; background: #fff; + box-sizing: content-box; } .preamble { @@ -20,8 +20,9 @@ @media (min-width: 740px){ .container { background: transparent; - padding: 20px 30px 35px; + padding: 30px 30px 15px; grid-template-columns: 2fr 1fr; + max-width: 1200px; } } @@ -32,3 +33,8 @@ } } +@media screen and (min-width: 1200px) { + .container { + padding: 50px 30px 35px; + } +}