CSS Media - Screen position react rules
- CSS Media - SLandingcreen position react rules
body {
margin: 0;
}
@media only screen and (orientation: landscape) {
.landscape {
background-image: url('/media/nooo_ls.png');
background-size: 100% 100%;
background-repeat: no-repeat;
background-position: center center;
height: 100vh;
}
}
@media only screen and (orientation: portrait) {
.portrait {
background-image: url('/media/nooo_pt.png');
background-size: 100% 100%;
background-repeat: no-repeat;
background-position: center center;
height: 100vh;
}
}