mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-24 12:26:40 +07:00
fix images in comment atachments was having wrong height
All checks were successful
Build & Publish / Build & Publish (push) Successful in 2m8s
All checks were successful
Build & Publish / Build & Publish (push) Successful in 2m8s
This commit is contained in:
parent
4d55906ae8
commit
254d35cba8
1 changed files with 6 additions and 3 deletions
|
@ -7,7 +7,7 @@
|
|||
|
||||
&.multiple {
|
||||
// Desktop devices
|
||||
@include flexbin(25vh, $flexbin-space);
|
||||
@include flexbin(400px, $flexbin-space);
|
||||
|
||||
// Tablet devices
|
||||
@media (max-width: $flexbin-tablet-max) {
|
||||
|
@ -27,8 +27,11 @@
|
|||
max-width: 100%;
|
||||
|
||||
.multiple & {
|
||||
max-height: 250px;
|
||||
max-inline-size: 250px;
|
||||
// both of that were 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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue