File tree 2 files changed +20
-21
lines changed
2 files changed +20
-21
lines changed Original file line number Diff line number Diff line change 96
96
margin : 0 50px 0 25px ;
97
97
98
98
}
99
- .todo-list-complete :: before {
99
+ .todo-list-complete : before {
100
100
content : "" ;
101
- display : block;
102
- width : 16px ;
103
- height : 16px ;
104
- top : 0 ;
105
- left : 0 ;
106
- border : 2px solid # 555555 ;
107
- border-radius : 3px ;
108
- background-color : white;
101
+ display : block;
102
+ width : 16px ;
103
+ height : 16px ;
104
+ top : 0 ;
105
+ left : 0 ;
106
+ border : 2px solid # 555555 ;
107
+ border-radius : 3px ;
108
+ background-color : white;
109
109
}
110
110
111
- .todo-list-delete :: before {
111
+ .todo-list-delete : before {
112
112
content : "" ;
113
- display : block;
114
- width : 16px ;
115
- height : 16px ;
116
- top : 0 ;
117
- left : 0 ;
118
- border : 2px solid # 555555 ;
119
- border-radius : 3px ;
120
- background-color : white;
113
+ display : block;
114
+ width : 16px ;
115
+ height : 16px ;
116
+ top : 0 ;
117
+ left : 0 ;
118
+ border : 2px solid darkred ;
119
+ border-radius : 3px ;
120
+ background-color : white;
121
121
}
122
122
123
123
124
-
125
-
126
124
body {
127
125
background : # FFFFE0 ;
128
126
}
@@ -159,6 +157,7 @@ hr, form{
159
157
/* MAIN */
160
158
.todo-list-container {
161
159
margin-top : 130px ;
160
+ margin-bottom : 130px ;
162
161
position : relative;
163
162
}
164
163
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ function App(): JSX.Element {
90
90
onClick = { ( ) => completeTodo ( index ) }
91
91
className = "todo-list-complete" >
92
92
</ input >
93
- < div style = { { textDecoration : todo . complete ? 'line-through' : '' } } className = "todo-list-item" >
93
+ < div style = { { textDecoration : todo . complete ? 'line-through' : '' } } className = "todo-list-item" >
94
94
{ todo . text }
95
95
</ div >
96
96
< input
You can’t perform that action at this time.
0 commit comments