Style the Screen Area
Define the visual appearance of the SDK container element using CSS.
Example:
#sdk-container {
width: 100vw;
overflow: hidden;
}
- This sets the container width to 100% of the viewport width and hides any content that overflows.
- Adjust these styles as needed for your application's layout.
Updated about 2 months ago