add a max width for imgs
All checks were successful
ci/woodpecker/push/publish Pipeline was successful
All checks were successful
ci/woodpecker/push/publish Pipeline was successful
This commit is contained in:
parent
44e38c3db9
commit
d153b732bd
1 changed files with 3 additions and 1 deletions
|
@ -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 */
|
||||||
|
|
Loading…
Reference in a new issue