I've been working on applying an SVG filter to responsive images in Bootstrap 4 by using the class "img-fluid"
However, I'm facing an issue where the separation between images varies across different resolutions. It's fine on desktop, but on mobile, the separation becomes too large.
If you want to take a look at the code snippet, you can find it here: https://codepen.io/fernandocomet/pen/ExVBrrR?editors=1100
Within my container, I have the following code:
.container {
position: relative;
width: 100vw;
height: 100vh;
}
Any assistance on how to maintain consistent image separation across resolutions would be greatly appreciated.