diff --git a/custom/styles/base.css b/custom/styles/base.css index 0f5072b..657ace9 100644 --- a/custom/styles/base.css +++ b/custom/styles/base.css @@ -19,7 +19,7 @@ html { font-family: var(--font-body); font-size: clamp(16px, 2.3vw, 20px); scroll-behavior: smooth } body { margin: 0; color: var(--color-grey) } p, ul, ol, aside { line-height: 1.5em; hyphens: auto } -img { max-width: 100%; height: auto } +img { width: 100%; height: auto } h1 { color: var(--color-green); font-size: 2.3rem } h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); @@ -49,7 +49,7 @@ a { .contain, :where(main>article, main>aside, main>section) { display: grid; - grid-template-columns: minmax(.8rem, 1fr) minmax(0, 42rem) minmax(.3rem, 1fr); + grid-template-columns: minmax(.8rem, 1fr) minmax(0, 42rem) minmax(.8rem, 1fr); > * { grid-column: 2 } }