Fix: image attachments not having minimum width

This commit is contained in:
bree
2021-07-09 11:09:55 -04:00
parent 3ea32b596a
commit c1dc2b9a1d
2 changed files with 8 additions and 0 deletions

View File

@@ -26,6 +26,7 @@
max-width: min(480px, 100%, var(--width-px));
object-fit: contain;
object-position: top left;
}
&.image {
@@ -37,6 +38,10 @@
&.tall {
height: min(100%, var(--height-px));
width: 100%;
&.loaded {
width: auto;
}
}
}