Hi Ivan Lopez,
To resolve the height issue, you can place a container inside the background image widget and wrap all your child components within that container. Then, apply a style to ensure the container takes up the full height of the screen.
For example, you can define a fullHeight style like this,
export const fullHeight = {
container: {
height: "100%",
},
};
Now, apply the fullHeight style to the inner container. This ensures the space inside the background image takes up the full height, so the image will properly fill the entire screen.