Are there any known issues around CSS effects getting reflected in “portrait” mode. I am able to tailor my app to make it view the way I want in “snapped” and “filled” modes. However I am not able to get make ANY changes to the how the app views in the portrait
state.
The app is visible inspite of having authored it in potrait mode as
@media screen and (-ms-view-state: portrait) {
.homepage section[role=main] {
margin-left: 0px;
}
h2{
display: none;
}
ul.nav {
display: none;
}
#cheatSheet {
display: none;
}
#snapped {
display: block;
}
}