2023-01-11 15:16:55 +01:00
|
|
|
// --------------------------------------------------
|
|
|
|
// ANIMATIONS
|
|
|
|
// --------------------------------------------------
|
2022-12-08 15:17:39 +01:00
|
|
|
|
2023-01-10 10:28:09 +01:00
|
|
|
@keyframes expand-outline {
|
|
|
|
0% {
|
|
|
|
outline-offset: 0;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
outline-offset: 4px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-20 18:08:51 +01:00
|
|
|
@keyframes expand-height {
|
|
|
|
0% {
|
|
|
|
height: 0;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
height: calc(100% - var(--regular-icon-size));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-27 16:12:44 +01:00
|
|
|
@keyframes rotate-360 {
|
|
|
|
0% {
|
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
transform: rotate(360deg);
|
|
|
|
}
|
|
|
|
}
|