Skip to content

Commit

Permalink
improved spaces on faq
Browse files Browse the repository at this point in the history
  • Loading branch information
aridanemartin committed Jan 13, 2023
1 parent 0432057 commit 13d3034
Showing 1 changed file with 49 additions and 48 deletions.
97 changes: 49 additions & 48 deletions components/Accordion/Accordion.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -47,72 +47,73 @@
&__text {
color: white;
margin: 0;
padding-bottom: 1rem;
padding-bottom: 2rem;
opacity: 0;
animation: fadeOutText 500ms ease-in;

&Open {
opacity: 1;
animation: fadeInText 1000ms ease-in;
}
}
}

@keyframes rotateOpen {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(405deg);
}
@keyframes rotateOpen {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(405deg);
}
}

@keyframes rotateClose {
0% {
transform: rotate(45deg);
}
100% {
transform: rotate(0deg);
}
@keyframes rotateClose {
0% {
transform: rotate(45deg);
}
100% {
transform: rotate(0deg);
}
}

@keyframes showItem {
0% {
max-height: 0;
}
100% {
max-height: 200px;
}
@keyframes showItem {
0% {
max-height: 0;
}
100% {
max-height: 200px;
}
}

@keyframes hideItem {
0% {
max-height: 200px;
}
100% {
max-height: 0;
}
@keyframes hideItem {
0% {
max-height: 200px;
}
100% {
max-height: 0;
}
}

@keyframes fadeInText {
0% {
transform: translate(0, 10%);
opacity: 0;
}
100% {
transform: translate(0, 0);
opacity: 1;
}
@keyframes fadeInText {
0% {
transform: translate(0, 10%);
opacity: 0;
}
100% {
transform: translate(0, 0);
opacity: 1;
}
}

@keyframes fadeOutText {
0% {
opacity: 1;
}
40% {
opacity: 0;
}
100% {
opacity: 0;
}
@keyframes fadeOutText {
0% {
opacity: 1;
}
40% {
opacity: 0;
}
100% {
opacity: 0;
}
}

Expand Down

1 comment on commit 13d3034

@vercel
Copy link

@vercel vercel bot commented on 13d3034 Jan 13, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.