24 lines
346 B
SCSS
24 lines
346 B
SCSS
|
.App {
|
||
|
text-align: center;
|
||
|
}
|
||
|
.todo-app {
|
||
|
background-color: #efefef;
|
||
|
padding: 1.2em;
|
||
|
.new-todo{
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
align-items: center;
|
||
|
input{
|
||
|
width: 80% !important;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
//.list-group-item{
|
||
|
// &.active:hover{
|
||
|
//
|
||
|
// }
|
||
|
// &active:hover{
|
||
|
// background-color: #d3d3d3;
|
||
|
// }
|
||
|
//}
|