I’m experiencing some issues with how some elements are displaying on certain devices with elements created in the Bricks Builder. Does anyone know if this is already a known issue for Bricks?
This search bar is made as a custom element from Bricks Builder and displays correctly when using dev tools to resize viewport widths, including the tablet breakpoint. However, on a physical iPad the animation and positioning of the elements all display incorrectly.
Again, dev tools (and my android phone) will display all the tiles with 1/1 aspect-ratio but on my coworkers iPhone the first and last tiles seem to lose their 1/1 property. This grid is templated using the Bricks Builder tools.
.tile {
aspect-ratio: 1/1;
background-position: center center;
padding-top: 42px;
padding-right: 42px;
padding-bottom: 42px;
padding-left: 42px;
justify-content: center;
overflow: hidden;
}
I want to know if others have experienced similar issues with their sites. Ideally I hoped I was just missing some prefixes for certain browsers but I don’t believe that’s the case. Thanks!