You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
228 B
16 lines
228 B
|
4 years ago
|
.task {
|
||
|
|
background: #f4f4f4;
|
||
|
|
margin: 5px;
|
||
|
|
padding: 10px 20px;
|
||
|
|
cursor: pointer;
|
||
|
|
}
|
||
|
|
|
||
|
|
.task.reminder {
|
||
|
|
border-left: 5px solid green;
|
||
|
|
}
|
||
|
|
|
||
|
|
.task h3 {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: space-between;
|
||
|
|
}
|