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