2019-09-27 18:19:13 +02:00
|
|
|
.likeButtonContainer {
|
|
|
|
|
@extend
|
|
|
|
|
.d-flex,
|
|
|
|
|
.flex-column,
|
|
|
|
|
.mr-3,
|
|
|
|
|
.mt-2;
|
|
|
|
|
|
|
|
|
|
$like_button_size: 11px;
|
|
|
|
|
|
|
|
|
|
.likeButton {
|
|
|
|
|
@extend .mb-2;
|
|
|
|
|
|
|
|
|
|
border-left: $like_button_size solid transparent;
|
|
|
|
|
border-right: $like_button_size solid transparent;
|
|
|
|
|
border-bottom: $like_button_size solid rgba(35,35,35,.2);
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
border-bottom-color: $astuto-black;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.likeButton.liked {
|
|
|
|
|
border-bottom-color: $astuto-black;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.likesCountLabel {
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-size: 17px;
|
|
|
|
|
}
|
2020-07-17 17:51:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
|
|
|
.likeButtonContainer {
|
|
|
|
|
.likeButton {
|
|
|
|
|
border-bottom-color: white;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
border-bottom-color: black;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.likeButton.liked {
|
|
|
|
|
border-bottom-color: black;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.likesCountLabel {
|
|
|
|
|
color: white;
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-09-27 18:19:13 +02:00
|
|
|
}
|