1
0
Fork 0

trying to improve image styling

This commit is contained in:
Sara Gerretsen 2025-12-29 12:57:54 +01:00
parent 80cf55a719
commit 4cd8624c8e

View file

@ -80,7 +80,7 @@ img.image-left {
float: left; float: left;
max-height: 100%; max-height: 100%;
height: 100%; height: 100%;
width: fit-content; width: min-content;
margin-right: 20px; margin-right: 20px;
} }
@ -88,7 +88,7 @@ img.image-right {
float: right; float: right;
max-height: 100%; max-height: 100%;
height: 100%; height: 100%;
width: fit-content; width: min-content;
margin-left: 20px; margin-left: 20px;
} }
@ -98,8 +98,3 @@ img.button {
width: 110px; width: 110px;
image-rendering: pixelated; image-rendering: pixelated;
} }
@media screen and (width <= 80rem) {
img.image-left {}
img.image-right {}
}