Fix image width for Ladybird and Safari

This commit is contained in:
Korbs 2024-08-28 19:21:52 -04:00
parent 6df6b5f103
commit 9828661511

View file

@ -37,7 +37,7 @@ export const prerender = true;
</slot> </slot>
</Default> </Default>
<style> <style lang="scss" is:global>
.blog-post { .blog-post {
a { a {
text-decoration: underline; text-decoration: underline;
@ -79,5 +79,10 @@ export const prerender = true;
margin: auto; margin: auto;
margin-top: 48px; margin-top: 48px;
} }
img {
display: block;
width: 100% !important;
max-width: 100% !important;
}
} }
</style> </style>