diff --git a/labs/meteor-client/app/client/stylesheets/portrait/users.less b/labs/meteor-client/app/client/stylesheets/portrait/users.less index 7e997f3caf..ac852b9593 100755 --- a/labs/meteor-client/app/client/stylesheets/portrait/users.less +++ b/labs/meteor-client/app/client/stylesheets/portrait/users.less @@ -3,21 +3,13 @@ -webkit-order: 3; order: 3; margin-bottom: 40px; + padding-bottom: 40px; max-height: 20%; min-height: 20%; } } -@media all and (orientation: portrait) and (max-device-aspect-ratio: 1/1), all and (orientation: landscape) and (max-device-aspect-ratio: 1/1) { - .userNameEntry { - height: 35px; - font-size: 30px; - strong { - font-size: 25px; - } - } -} - +/*desktop portrait*/ @media all and (orientation: portrait) and (min-device-aspect-ratio: 1/1) { #username { display:block; @@ -30,7 +22,15 @@ } } - .userNameEntry { + .usernameEntry { height: 20px; + font-size: 2vh; + } +} + +/*mobile*/ +@media all and (orientation: portrait) { + .usernameEntry { + font-size: 2vh; } }