1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-24 20:36:40 +07:00

fix images in comment atachments was having wrong height
All checks were successful
Build & Publish / Build & Publish (push) Successful in 2m8s

This commit is contained in:
Fedor Katurov 2025-04-04 13:55:29 +07:00
parent 4d55906ae8
commit 254d35cba8

View file

@ -7,7 +7,7 @@
&.multiple { &.multiple {
// Desktop devices // Desktop devices
@include flexbin(25vh, $flexbin-space); @include flexbin(400px, $flexbin-space);
// Tablet devices // Tablet devices
@media (max-width: $flexbin-tablet-max) { @media (max-width: $flexbin-tablet-max) {
@ -27,8 +27,11 @@
max-width: 100%; max-width: 100%;
.multiple & { .multiple & {
max-height: 250px; // both of that were 250px,
max-inline-size: 250px; // if you know why it should be like this, tell me
// it messes up with the flexbin above
max-height: 400px;
max-inline-size: 400px;
} }
} }