wpLovr white logo

/* this doesn’t work in regular CSS */
.navigation {
   ul { display: flex; }
   a { text-decoration: none; }
}

/* you need to use the & with element selectors */
.navigation {
   & ul { display: flex; }
   & a { text-decoration: none; }
}