add a max width for imgs
All checks were successful
ci/woodpecker/push/publish Pipeline was successful

This commit is contained in:
Mylloon 2023-04-27 01:06:05 +02:00
parent 44e38c3db9
commit d153b732bd
Signed by: Anri
GPG key ID: A82D63DFF8D1317F

View file

@ -28,6 +28,7 @@
:root { :root {
--font-size: 17px; --font-size: 17px;
--max-width: 720px;
} }
html { html {
@ -96,7 +97,7 @@ h6 > a {
body { body {
margin: 0 auto; margin: 0 auto;
max-width: 720px; max-width: var(--max-width);
} }
footer { footer {
@ -135,6 +136,7 @@ blockquote {
img { img {
display: block; display: block;
margin: auto; margin: auto;
max-width: var(--max-width);
} }
/* Code */ /* Code */