0
0
mirror of https://github.com/Doodle3D/doodle3d-client.git synced 2024-11-21 17:07:55 +01:00

Better fitting settings window when keyboard is opened on android

This commit is contained in:
peteruithoven 2014-02-12 14:26:39 +01:00
parent 90d1a80355
commit 26c864a301
2 changed files with 9 additions and 7 deletions

View File

@ -46,11 +46,4 @@
margin: 5% 6% 1% 5%;
width: 70%;
}
}
/*
SETTINGS POPUP
*/
#popupSettings {
margin: 2% 2%;
}

View File

@ -15,6 +15,15 @@
@import "mobile.less";
}
// TABLET
@media only screen and (max-height: 300px),
only screen and (max-width: 450px) and (min-device-pixel-ratio : 1.5),
only screen and (max-width: 450px) and (-webkit-min-device-pixel-ratio : 1.5) {
#popupSettings {
margin: 2% 2%;
}
}
// PORTRAIT
@media only screen and (orientation:portrait) {
@import "portrait.less";