Edit global style and component structure

This commit is contained in:
Paul Nicoué 2023-02-02 17:02:53 +01:00
parent 88bac001d8
commit 53e513a55b
15 changed files with 816 additions and 215 deletions

View file

@ -11,15 +11,6 @@
}
}
@keyframes expand-width {
0% {
width: 0;
}
100% {
width: 100%;
}
}
@keyframes expand-height {
0% {
height: 0;
@ -29,28 +20,6 @@
}
}
@keyframes fade-in-from-bottom {
0% {
opacity: 0;
transform: translateY(0.25rem);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
@keyframes fade-in-from-top {
0% {
opacity: 0;
transform: translateY(-0.25rem);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
@keyframes rotate-360 {
0% {
transform: rotate(0deg);