webapp/src/components/Article/RatingControl.module.scss

36 lines
537 B
SCSS
Raw Normal View History

.rating {
align-items: center;
display: flex;
2023-02-28 17:13:14 +00:00
&.isDownvoted .downvoteButton,
&.isUpvoted .upvoteButton {
background: #000;
border-color: #000;
color: #fff;
}
}
.ratingValue {
font-weight: bold;
margin: 0 0.5em;
}
.ratingControl {
align-items: center;
2022-12-04 15:10:27 +00:00
border: 2px solid;
border-radius: 100%;
display: flex;
justify-content: center;
height: 0.9em;
line-height: 0;
font-size: 1.6em;
padding: 0;
width: 0.9em;
2022-12-04 15:10:27 +00:00
&:hover {
2022-12-04 15:10:27 +00:00
background: #000;
border-color: #000;
color: #fff;
}
}