Fix not setting max size incorctly

This commit is contained in:
CronyAkatsuki 2023-03-26 15:45:19 +02:00
parent 2c5737e4cd
commit 4bbed56600

View File

@ -22,15 +22,15 @@ hr {
img { img {
display: block; display: block;
margin: auto; margin: auto;
max-width: 800; max-width: 800px;
max-height: 800; max-height: 800px;
} }
video { video {
display: block; display: block;
margin: auto; margin: auto;
max-width: 800; max-width: 800px;
max-height: 800; max-height: 800px;
} }
a { a {