todo_app / src /App.css
Anshu109's picture
Upload 1998 files
ccf1f60
raw
history blame contribute delete
No virus
679 Bytes
.App {
display: flex;
align-items: center;
flex-direction: column;
width: 100vw;
font-family: Arial, Helvetica, sans-serif;
}
body {
margin: 0;
padding: 0;
}
.addTask {
height: 30vh;
background-color: dodgerblue;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.list {
height: auto;
width: 100%;
display: flex;
align-items: center;
padding-top: 50px;
flex-direction: column;
}
.task {
width: auto;
height: 50px;
display: flex;
margin: 15px;
display: flex;
align-items: center;
justify-content: center;
}
.task button {
width: auto;
height: 20px;
margin-left: 5px;
text-align: center;
}