I have a question about customizing the height of ngx-gallery from this link: https://github.com/MurhafSousli/ngx-gallery. Currently, it has a fixed height value of 500px and adjusting the parent div height doesn't seem to have any effect.
I was hoping to find a way to set the height directly in the template like this:
<gallery
[height] = '250px'>
</gallery>
Here is the Stackblitz link for reference: https://stackblitz.com/edit/angular-osh1vu
Another question I have is regarding the behavior of fit-height vs. fit-width with ngx-gallery. In the current implementation of my application, the black background appears above and below the image due to fit-width, whereas in the provided Stackblitz example it seems to be fit-height. Is there a way to adjust this behavior as well? (It used to be possible with an older attribute, but that is no longer valid)
Alternatively, I've tried inspecting the elements using dev tools and noticed the sliding images are labeled as div.g-template.g-item-template. However, attempts to override their height with CSS hasn't been successful:
div.g-template.g-item-template {
height: 200px !important;
}