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 {
|
||||
--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 */
|
||||
|
|
Loading…
Reference in a new issue