I can't understand why on iphone I don't see the full background but it looks as if it cuts out!
the purple part of the photo is a CANVAS, while the pink part is the background, I want on the iphone to rotate the screen and change the background but when I do the background does not take all the display and that little white piece remains! on anrdoid devices instead it works....
IPHONE SCREEN:
SAMSUNG SCREEN:
this is the code i used on the css:
@media screen and (min-width: 320px) and (max-width: 667px) and (orientation: portrait) {
html {
transform: rotate(-90deg);
transform-origin: left top;
width: 100vh;
height: 100vw;
background: rgb(248, 184, 158);
background: radial-gradient(
circle,
rgba(248, 184, 158, 1) 27%,
rgba(210, 64, 49, 1) 70%
);
overflow-x: auto;
position: absolute;
top: 100%;
left: 0;
}
}

