1
0
mirror of https://github.com/robsheldon/sscaffold-css.git synced 2025-08-30 17:19:47 +02:00

Add missing "and" keywords in media queries.

Fixes GH issue #10, thank you for the report.
This commit is contained in:
Rob
2020-03-08 15:46:14 -07:00
parent 897ae6a473
commit dd2ea33000

View File

@@ -407,7 +407,7 @@ only screen and (-webkit-max-device-pixel-ratio: 0.9) and (min-width: 750px) {
12px at 2560 x 1600 and larger. */ 12px at 2560 x 1600 and larger. */
@media @media
only screen and (min-resolution: 91dpi) and (max-resolution: 119dpi), only screen and (min-resolution: 91dpi) and (max-resolution: 119dpi),
only screen (-webkit-min-device-pixel-ratio: 0.91) and (-webkit-max-device-pixel-ratio: 1) { only screen and (-webkit-min-device-pixel-ratio: 0.91) and (-webkit-max-device-pixel-ratio: 1) {
html { html {
font-size: 62.5%; font-size: 62.5%;
} }
@@ -416,7 +416,7 @@ only screen (-webkit-min-device-pixel-ratio: 0.91) and (-webkit-max-device-pixel
@media @media
only screen and (min-resolution: 91dpi) and (max-resolution: 119dpi) and (min-width: 1500px), only screen and (min-resolution: 91dpi) and (max-resolution: 119dpi) and (min-width: 1500px),
only screen (-webkit-min-device-pixel-ratio: 0.91) and (-webkit-max-device-pixel-ratio: 1) and (min-width: 1500px) { only screen and (-webkit-min-device-pixel-ratio: 0.91) and (-webkit-max-device-pixel-ratio: 1) and (min-width: 1500px) {
html { html {
font-size: 68.75%; font-size: 68.75%;
} }
@@ -425,7 +425,7 @@ only screen (-webkit-min-device-pixel-ratio: 0.91) and (-webkit-max-device-pixel
@media @media
only screen and (min-resolution: 91dpi) and (max-resolution: 119dpi) and (min-width: 2500px), only screen and (min-resolution: 91dpi) and (max-resolution: 119dpi) and (min-width: 2500px),
only screen (-webkit-min-device-pixel-ratio: 0.91) and (-webkit-max-device-pixel-ratio: 1) and (min-width: 2500px) { only screen and (-webkit-min-device-pixel-ratio: 0.91) and (-webkit-max-device-pixel-ratio: 1) and (min-width: 2500px) {
html { html {
font-size: 75%; font-size: 75%;
} }