max-width for images

This commit is contained in:
j 2023-09-15 17:42:06 +01:00
parent 1fe78d18a1
commit 3faf2c2493

View file

@ -136,9 +136,13 @@ video, .poster {
border: 1px solid blueviolet;
margin-bottom: 4px;
}
.annotation img {
max-width: 100%;
}
@media(max-width:768px) {
.annotation a img {
.annotation img {
width: 100%;
max-width: 100%;
}
}