RPeraltaJr
12/18/2019 - 5:25 PM

Update styles if a parent element has a class

In this case, the body element has a class of nav-is-white. Therefore, the nav color is updated to white.

.nav {
  color: black;

    .nav-is-white & {
        color: white;
    }
}
<body class="<?php echo implode(" ", $page_type); ?>">