Switch to landscape from min aspect ratio (app-theme)

* 'fix-copy-paste-in-app-theme' of https://github.com/LM450N/polymer-starter-kit:
  Fixing copy-paste media query into the app-theme.html file
This commit is contained in:
Addy Osmani
2015-06-02 00:28:13 +01:00

View File

@@ -208,15 +208,15 @@ paper-menu a {
/* tablet-large */
@media all and (min-width: 601px) and (max-width: 840px) and (orientation : portrait) { }
/* desktop-x-small-landscape */
@media all and (min-width: 0px) and (max-width: 480px) and (min-aspect-ratio: 4/3) { }
@media all and (min-width: 0px) and (max-width: 480px) and (orientation: landscape) { }
/* desktop-x-small */
@media all and (min-width: 0px) and (max-width: 480px) and (max-aspect-ratio: 4/3) { }
/* desktop-small-landscape */
@media all and (min-width: 481px) and (max-width: 840px) and (min-aspect-ratio: 4/3) { }
@media all and (min-width: 481px) and (max-width: 840px) and (orientation: landscape) { }
/* desktop-small */
@media all and (min-width: 481px) and (max-width: 840px) and (max-aspect-ratio: 4/3) { }
/* desktop-medium-landscape */
@media all and (min-width: 841px) and (max-width: 1280px) and (min-aspect-ratio: 4/3) { }
@media all and (min-width: 841px) and (max-width: 1280px) and (orientation: landscape) { }
/* desktop-medium */
@media all and (min-width: 841px) and (max-width: 1280px) and (max-aspect-ratio: 4/3) { }
/* desktop-large */