Disable max-height for feed images

Hi!

I have set 'Compact UI' in the settings set to 'No - expand images' but in my home feed they are still cut off. Looking at the code I can see the following:

.post_teaser_image_preview a {  
    max-height: 575px;  
    overflow: hidden;  
}  

and disabling max-height solves my issue (seeing the whole image in the feed without clicking it).

How do I specify this in the custom CSS section in the settings so that the max-height is always disabled?
I tried

:disable {  
    .post_teaser_image_preview a {  
        max-height: 575px;  
    }  
}  

but it doesn't work.

1 points · 3 comments · view on lemmy.world

3 Comments

bigchunga@feddit.online · 2 pts · 358d

Solution:

.post_teaser_image_preview a {  
    max-height: unset;  
} 
Jerry@feddit.online · 1 pts · 359d (1 reply)

Hi. Can you repost this in !piefed_help@piefed.social ? The developers will be able to help more than I can.

bigchunga@feddit.online · 1 pts · 358d

Sure, will do. Thanks!