Files
qmining-page/src/components/todoStuff/todoRow.module.css
T

47 lines
516 B
CSS

.row {
display: flex;
border: 2px solid #99f;
border-radius: 2px;
padding: 5px;
margin: 6px 3px;
cursor: pointer;
}
.row:hover {
background-color: #333;
border: 2px solid #f99;
}
.row > div {
margin: 0px 5px;
}
.id {
flex: 0 20px;
margin: 0px 3px;
color: #999;
}
.description {
flex: 1;
word-break: normal;
font-size: 14px;
color: white;
}
.votes {
}
.voted {
border: 2px solid #cf9;
}
.catName {
display: flex;
}
.category {
word-break: break-all;
font-size: 10px;
}