skills section overhaul

This commit is contained in:
2024-04-11 17:28:22 +01:00
parent 24a59f9164
commit b50fd99ac0
11 changed files with 412 additions and 133 deletions

View File

@@ -41,4 +41,32 @@ body {
.splide__slide {
display: flex;
}
.accordion-content-enter {
opacity: 0;
height: 0;
overflow: hidden;
}
.accordion-content-enter-active {
opacity: 1;
height: auto;
transition: opacity 300ms, height 300ms;
}
.accordion-content-exit {
opacity: 1;
height: auto;
}
.accordion-content-exit-active {
opacity: 0;
height: 0;
transition: opacity 300ms, height 300ms;
overflow: hidden;
}
.accordion-header {
text-align: center;
}