css: Use scss nesting for `a.arrow`.

This commit is contained in:
Siddharth Varshney 2020-05-25 02:23:05 +05:30 committed by Tim Abbott
parent cc71533b21
commit e520e82b04
1 changed files with 12 additions and 14 deletions

View File

@ -48,20 +48,18 @@ a:hover {
text-decoration: none;
}
a.arrow::after {
content: " ";
display: inline-block;
position: relative;
height: 17px;
width: 17px;
top: 3px;
background-image: url(/static/images/landing-page/arrow.png);
background-size: 100%;
margin-left: 5px;
a.arrow {
&::after {
content: " ";
display: inline-block;
position: relative;
height: 17px;
width: 17px;
top: 3px;
background-image: url(/static/images/landing-page/arrow.png);
background-size: 100%;
margin-left: 5px;
}
}
a.silver {