css: Use SCSS nesting for .portico-landing.features-app .cta.

This commit is contained in:
SiddharthVarshney 2020-06-15 06:28:33 +05:30 committed by Tim Abbott
parent c37d83347c
commit d8a3ca0b2e

View File

@ -633,18 +633,20 @@ nav {
}
}
.portico-landing.features-app .cta::after {
content: "\2192";
margin-left: 5px;
transform: scaleX(2);
transition: all 0.3s ease;
}
.portico-landing.features-app .cta:hover {
.portico-landing.features-app .cta {
&::after {
margin-left: 10px;
content: "\2192";
margin-left: 5px;
transform: scaleX(2);
transition: all 0.3s ease;
}
&:hover {
&::after {
margin-left: 10px;
}
}
}