Files
astuto/app/assets/stylesheets/components/LikeButton.scss
Riccardo Graziosi 747483cfa3 Various improvements (#332)
* Fix locale fallbacks
* Make header links relative
* Improve like button style
* Other small improvements...
2024-05-09 19:23:45 +02:00

18 lines
246 B
SCSS

.likeButtonContainer {
@extend
.d-flex,
.flex-column,
.mr-3;
.likeButton:hover {
cursor: pointer;
transform: scale(1.15);
}
.likeCountLabel {
@extend .mt-2;
text-align: center;
font-size: 20px;
}
}