Skip to content

Commit 7c4f29c

Browse files
committed
fix: botão de check task
1 parent 460528c commit 7c4f29c

File tree

3 files changed

+60
-7
lines changed

3 files changed

+60
-7
lines changed

index.html

+3
Original file line numberDiff line numberDiff line change
@@ -72,5 +72,8 @@ <h1 class="todoapp__title">Quick<strong>Task</strong></h1>
7272
</button>
7373
</form>
7474
</main>
75+
<footer class="footer">
76+
<p>© 2024 QuickTask. Todos os direitos reservados - João Victor Carvalho de Souza</p>
77+
</footer>
7578
</body>
7679
</html>

src/scripts/toDoListScript.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,10 @@ document.addEventListener("click", (e) => {
5656
}
5757

5858
if (targetEl.classList.contains("todoapp__button--editTask")) {
59-
oldInputValue = taskTitle; // Definindo o valor aqui
59+
oldInputValue = taskTitle;
6060
toggleForms();
6161
textBoxEdit.value = taskTitle;
62+
textBoxEdit.focus();
6263
}
6364
});
6465

src/styles/index.css

+55-6
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ body {
2525
}
2626

2727
.todoapp {
28-
max-height: 90vh;
28+
max-height: 80vh;
29+
width: 90vw;
30+
max-width: 600px;
2931
overflow: hidden;
3032

3133
padding: 2rem;
@@ -47,19 +49,24 @@ body {
4749
}
4850

4951
.todoapp__input-container {
52+
display: flex;
53+
5054
margin-bottom: 1rem;
5155
}
5256

5357
#todoapp-addTask,
5458
#todoapp-editTask {
59+
width: 100%;
60+
5561
padding: 8px;
62+
margin-right: 1rem;
5663

57-
border-bottom: 2px solid var(--color01);
64+
border-bottom: 3px solid var(--color01);
5865
}
5966

6067
#button-Add,
6168
#button-Edit {
62-
padding: 8px;
69+
padding: 12px;
6370

6471
border-radius: 30% 70% 63% 37% / 27% 32% 68% 73%;
6572

@@ -68,7 +75,7 @@ body {
6875
}
6976

7077
.todoapp__tasks-list {
71-
max-height: calc(90vh - 50px);
78+
max-height: calc(80vh - 200px);
7279
overflow-y: auto;
7380

7481
display: flex;
@@ -85,15 +92,35 @@ body {
8592
align-items: center;
8693

8794
padding: 8px;
88-
border: 2px solid var(--color01);
95+
border: 3px solid var(--color01);
96+
border-radius: 8px;
8997
}
9098

9199
.task-LeftSide {
92100
display: flex;
93101
align-items: center;
102+
103+
gap: 8px;
104+
}
105+
106+
.todoapp__task-check {
107+
width: 24px;
108+
height: 24px;
109+
110+
display: grid;
111+
place-items: center;
112+
113+
border-radius: 50%;
114+
border: 3px solid var(--color01);
115+
116+
font-size: 1.2rem;
117+
}
118+
119+
.todoapp__task-check i {
120+
pointer-events: none;
94121
}
95122

96-
.todoapp__task--done {
123+
.done {
97124
color: #9b9b98;
98125
text-decoration: line-through;
99126
}
@@ -112,3 +139,25 @@ body {
112139
.hide {
113140
display: none !important;
114141
}
142+
143+
.footer {
144+
width: 100%;
145+
padding: 1rem;
146+
background-color: var(--color01);
147+
color: var(--colorwhite);
148+
text-align: center;
149+
position: absolute;
150+
bottom: 0;
151+
left: 0;
152+
font-size: 0.875rem;
153+
}
154+
155+
.footer p {
156+
margin: 0;
157+
}
158+
159+
@media screen and (min-width: 700px) {
160+
* {
161+
font-size: 1.3rem;
162+
}
163+
}

0 commit comments

Comments
 (0)