css: Use SCSS nesting for nav.white ul.

This commit is contained in:
SiddharthVarshney 2020-05-27 00:54:35 +05:30 committed by Tim Abbott
parent f4f99e7ca6
commit 3a81099972

View File

@ -225,8 +225,14 @@ nav.white li {
}
}
nav.white ul li.active::after {
color: hsl(0, 0%, 27%);
nav.white ul {
li {
&.active {
&::after {
color: hsl(0, 0%, 27%);
}
}
}
}
nav.white .brand.logo {