How to write the below css code with arrows in sass?
.membersList ul.pagination > .active > a {
background-color: #4CAF50;
color: white;
border: 1px solid #4CAF50;
}
What's the difference between above and below
CSS:
.membersList ul.pagination .active a {
background-color: #4CAF50;
color: white;
border: 1px solid #4CAF50;
}
SASS:
.membersList
{
ul.pagination {
.active
{
a {
background-color: #4CAF50;
color: white;
border: 1px solid #4CAF50;
}
}
}
}