Todo description now shows up in a modal

This commit is contained in:
mrfry 2021-03-22 15:43:30 +01:00
parent e311b88508
commit df4fd775f3
4 changed files with 25 additions and 18 deletions

View file

@ -13,10 +13,13 @@
font-size: 18px;
}
.name {
.title {
color: var(--text-color);
font-size: 20px;
margin: 20px 0px;
margin: 5px 0px;
}
.name {
}
.category {
@ -30,6 +33,13 @@
color: #999;
}
.description {
overflow-x: hidden;
overflow-y: scroll;
max-height: calc(38vh);
margin: 5px;
}
.row {
display: flex;
justify-content: space-between;