Skip to content

Commit

Permalink
Todo app with api
Browse files Browse the repository at this point in the history
  • Loading branch information
dimkamg21 committed Sep 17, 2023
1 parent 59da744 commit 26c1a23
Showing 1 changed file with 6 additions and 15 deletions.
21 changes: 6 additions & 15 deletions src/styles/todoapp.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,6 @@
background: #fff;
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2),
0 25px 50px 0 rgba(0, 0, 0, 0.1);

// opacity: 0;
// transform: translateY(-20px);
// transition: opacity 0.5s ease, transform 0.5s ease;

// &.visible {
// opacity: 1;
// transform: translateY(0);
// }
}

&__title {
Expand Down Expand Up @@ -146,11 +137,11 @@

.todo-list {
opacity: 0;
transform: translateY(-20px);
transition: opacity 0.5s ease, transform 0.5s ease;
transform: translateY(-20px);
transition: opacity 0.5s ease, transform 0.5s ease;

&.visible {
opacity: 1;
transform: translateY(0);
}
&.visible {
opacity: 1;
transform: translateY(0);
}
}

0 comments on commit 26c1a23

Please sign in to comment.