webapp/src/components/_shared/VotersList/VotersList.module.scss

44 lines
615 B
SCSS
Raw Normal View History

2023-03-09 23:39:07 +00:00
.VotersList {
.users {
margin: 0;
min-width: 220px;
max-height: 360px;
overflow: auto;
}
2023-05-01 18:32:32 +00:00
2023-03-09 23:39:07 +00:00
.item {
display: flex;
2023-05-01 18:32:32 +00:00
flex-flow: row nowrap;
2023-03-09 23:39:07 +00:00
align-items: center;
.user {
display: flex;
2023-05-01 18:32:32 +00:00
flex-flow: row nowrap;
2023-03-09 23:39:07 +00:00
align-items: center;
margin-right: 1.2rem;
a {
text-decoration: none;
border: none;
}
.userpic {
width: 24px;
height: 24px;
}
}
}
.commentRatingPositive {
color: #2bb452;
}
.commentRatingNegative {
color: #d00820;
}
2023-07-09 18:34:59 +00:00
.fallbackMessage {
font-size: 1.2rem;
}
2023-03-09 23:39:07 +00:00
}