This commit is contained in:
mrfry 2021-05-29 21:44:08 +02:00
parent c60ace4f9b
commit 602e16046e
18 changed files with 512 additions and 174 deletions

View file

@ -6,7 +6,6 @@
.table {
display: flex;
min-width: 800px;
}
.categoryName {

View file

@ -34,9 +34,9 @@ export default function TodoCard(props) {
</span>
</div>
<div className={styles.numbers}>
<div className={`${voted && styles.voted}`}>
<div>{`Szavazatok: ${votes.length}`}</div>
</div>
<div
className={`${voted && styles.voted}`}
>{`Szavazatok: ${votes.length}`}</div>
<div>{`Nehézség: ${points}`}</div>
</div>
</div>

View file

@ -34,6 +34,7 @@
.numbers {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
.numbers > div {

View file

@ -44,6 +44,7 @@
display: flex;
justify-content: space-between;
margin: 2px 10px;
flex-wrap: wrap;
}
.button {