mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 11:17:49 +01:00
30 lines
553 B
SCSS
30 lines
553 B
SCSS
.likeButtonContainer {
|
|
@extend
|
|
.d-flex,
|
|
.flex-column,
|
|
.mr-3;
|
|
|
|
$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: var(--primary-color);
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
.likeButton.liked {
|
|
border-bottom-color: var(--primary-color);
|
|
}
|
|
|
|
.likeCountLabel {
|
|
text-align: center;
|
|
font-size: 17px;
|
|
}
|
|
} |