I downloaded the html and CSS code for my design and when I open the html on chrome it looks perfectly fine and looks the same as the one I designed in Figma. However, there are white space on the side making the all the images doesn’t bleed properly .
This is the CSS styling for the grouped element
.element-EARTH {
box-sizing: content-box;
background-color: #000000;
display: flex;
flex-direction: row;
justify-content: center;
width: 100%;
}
This is a side effect of using “absolute layout”. You want a responsive design, so you need to use the auto layout features in Figma to signify how you want the background to behave.
Once you have it set up correctly, do a sync again and it should work correctly for you.
Make sure to add Auto-Layout to the entire screen, starting from the container frame down to all the sections and elements within. Then, after doing so, make sure to test it by scaling the main frame horizontally to ensure it is responsive (all the elements are moving as they should).
Then you can re-sync and let us know if there are any changes! Thank you