Make the hr on markdown pages slightly less weird

vielle.dev fa2bb99a d77b6cc2

verified
Changed files
+3 -2
src
components
+3 -2
src/components/Markdown.astro
··· 60 height: 5px; 61 border: none; 62 border-image: var(--hr-png) 0 5 fill / 0 5px round; 63 - width: clamp(60ch, 80vw, 120ch); 64 margin-inline: auto; 65 66 @media (max-width: 60ch) { 67 - width: 100%; 68 } 69 } 70 </style>
··· 60 height: 5px; 61 border: none; 62 border-image: var(--hr-png) 0 5 fill / 0 5px round; 63 + width: clamp(60ch, 80vw, 80ch); 64 margin-inline: auto; 65 66 @media (max-width: 60ch) { 67 + width: calc(100% - 20px); 68 + margin-inline: 10px; 69 } 70 } 71 </style>