diff options
author | 2022-08-15 11:19:47 -0500 | |
---|---|---|
committer | 2022-08-15 11:19:47 -0500 | |
commit | 655d9840f80e1a7fcb57e275e71ab46d7b8b19ec (patch) | |
tree | 64d85a137362889908060e6d904ddbe00e0a0521 /examples/blog/src | |
parent | 2edcb30c3d03dc57d7c87034d8a40208fabbd57c (diff) | |
download | astro-655d9840f80e1a7fcb57e275e71ab46d7b8b19ec.tar.gz astro-655d9840f80e1a7fcb57e275e71ab46d7b8b19ec.tar.zst astro-655d9840f80e1a7fcb57e275e71ab46d7b8b19ec.zip |
fix(blog): height auto img (#4327)
Co-authored-by: Nate Moore <nate@astro.build>
Diffstat (limited to 'examples/blog/src')
-rw-r--r-- | examples/blog/src/styles/global.css | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/blog/src/styles/global.css b/examples/blog/src/styles/global.css index 0f544009d..999782ff2 100644 --- a/examples/blog/src/styles/global.css +++ b/examples/blog/src/styles/global.css @@ -46,6 +46,7 @@ table { } img { max-width: 100%; + height: auto; } code { padding: 2px 5px; |