| 123456789101112131415161718192021222324 |
- .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;
- // }
- //}
|