Personal Site

Add minimal CSS reset

vielle.dev b3d7704f 87bd5cc0

verified
+17
+17
src/components/Base.astro
··· 15 15 <title> 16 16 {Astro.props.title ? `${Astro.props.title} | vielle.dev` : "vielle.dev"} 17 17 </title> 18 + 19 + <style> 20 + @layer reset { 21 + :root { 22 + font-family: sans-serif; 23 + interpolate-size: allow-keywords 24 + } 25 + 26 + body { 27 + margin: 0 28 + } 29 + 30 + img, svg, iframe, audio, video { 31 + max-width: 100%; 32 + } 33 + } 34 + </style> 18 35 <slot name="head" /> 19 36 </head> 20 37 <body>