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

26 lines
382 B
SCSS
Raw Normal View History

.rating {
align-items: center;
display: flex;
}
.ratingValue {
font-weight: bold;
margin: 0 0.5em;
}
.ratingControl {
align-items: center;
display: flex;
justify-content: center;
height: 0.9em;
line-height: 0;
@include font-size(3.6rem);
2022-11-27 06:33:05 +00:00
color: #777;
padding: 0;
width: 0.9em;
2022-11-27 06:33:05 +00:00
transition: 0.15s all linear;
&:hover {
2022-11-27 06:33:05 +00:00
transform: scale(1.2);
}
}