fem-adv-css-layout icon indicating copy to clipboard operation
fem-adv-css-layout copied to clipboard

08 type scales: media queries aren't affecting the CSS custom properties

Open somascope opened this issue 5 years ago • 0 comments

The media queries are missing the targeting of :root, which is where the variables are scoped at the top of the CSS file.

In the videos (2nd video, "Custom Properties Type Scale", at ~10:22), we see:

@media (min-width: 480px) {
  --base-size: 1.15em;
}

But instead, it should be:

@media (min-width: 480px) {
  :root {
    --base-size: 1.15em;
  }
}

somascope avatar Jan 17 '20 03:01 somascope