14 lines
No EOL
202 B
CSS
14 lines
No EOL
202 B
CSS
.favoriteWrapper {
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
/* opacity: 0; */
|
|
margin: 0 15px;
|
|
|
|
&[data-favourite=true] {
|
|
opacity: 1;
|
|
& svg {
|
|
fill: $teal;
|
|
}
|
|
}
|
|
} |