I checked out Kodular Fenix (v1.5.0) Bug Tracker before creating a new topic
Describe your issue
login screen display problem on 10 inch android tablet
Steps to reproduce the issue
Login in kodular community, creator…
Android version
9
I checked out Kodular Fenix (v1.5.0) Bug Tracker before creating a new topic
login screen display problem on 10 inch android tablet
Login in kodular community, creator…
9
It is probably happening because you are using an android device. Try using desktop mode, it should work fine.
This is due to the use of CSS Grid, which in turn uses an @media property, to make the site look good on different devices, probably the width of your device in pixels is greater than “mobile view”
.mobile .mdc-layout-grid__cell--span-0-phone {
display: none;
}
.mobile .main-panel > div > div:nth-child(2) {
height: 100vh;
width: 100vw;
}
.mobile .content-panel {
min-height: 100%;
}
@Vishwas can it be reviewed?