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

29 lines
406 B
SCSS
Raw Normal View History

.rating {
align-items: center;
display: flex;
}
.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;
}
}