Files
tasknote/src/components/TaskList.module.css
T
2024-08-24 17:19:40 -03:00

39 lines
556 B
CSS

.task {
display: flex;
justify-content: space-between;
max-width: 400px;
margin: 0 auto;
border-bottom: 1px solid #ccc;
padding: 1em;
}
.details {
text-align: left;
}
.details h4 {
font-size: 1.2em;
margin-bottom: 1em;
}
.actions {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.actions button {
margin-bottom: .5em;
font-size: 1.2em;
cursor: pointer;
background-color: #282c34;
color: #fff;
padding: .4em;
transition: .5s;
}
.actions button:hover {
color: #61dafb;
}