css: Use SCSS nesting for `.carousel-indicators li`.

This commit is contained in:
SiddharthVarshney 2020-07-19 16:06:00 +05:30 committed by Tim Abbott
parent 7af8b7ff6c
commit 7f2c5a7015
1 changed files with 21 additions and 21 deletions

View File

@ -1578,9 +1578,8 @@ nav {
cursor: pointer;
background-color: hsl(222, 12%, 66%);
transition: background .1s ease;
}
.carousel-indicators li::before {
&::before {
position: absolute;
top: -10px;
left: 0;
@ -1588,9 +1587,9 @@ nav {
width: 100%;
height: 10px;
content: "";
}
}
.carousel-indicators li::after {
&::after {
position: absolute;
bottom: -10px;
left: 0;
@ -1598,10 +1597,11 @@ nav {
width: 100%;
height: 10px;
content: "";
}
}
.carousel-indicators li.active {
&.active {
background-color: hsl(220, 23%, 33%);
}
}
.portico-landing .testimonials {