Fix a stray background: property

We use background-image specifically so it doesn't overwrite background-size
This commit is contained in:
Justin Edmund 2022-12-27 10:37:20 -08:00
parent c740342a83
commit 227f72745f

View file

@ -1,16 +1,13 @@
.UncapStar {
$size: 18px;
background-repeat: no-repeat;
background-size: $size;
display: block;
height: $size;
width: $size;
@media (min-width: $laptop) {
&:hover {
transform: scale(1.2);
}
&:hover {
transform: scale(1.2);
}
&.empty,
@ -45,7 +42,7 @@
background-image: url('/icons/uncap/blue@3x.png');
&:hover {
background: url('/icons/uncap/blue-hover@3x.png');
background-image: url('/icons/uncap/blue-hover@3x.png');
}
}
@ -64,5 +61,9 @@
background-size: cover;
height: 14px;
width: 14px;
&:hover {
transform: scale(1);
}
}
}