30 lines
504 B
SCSS
30 lines
504 B
SCSS
// --------------------------------------------------
|
|
// ANIMATIONS
|
|
// --------------------------------------------------
|
|
|
|
@keyframes expand-outline {
|
|
0% {
|
|
outline-offset: 0;
|
|
}
|
|
100% {
|
|
outline-offset: 4px;
|
|
}
|
|
}
|
|
|
|
@keyframes expand-height {
|
|
0% {
|
|
height: 0;
|
|
}
|
|
100% {
|
|
height: calc(100% - var(--regular-icon-size));
|
|
}
|
|
}
|
|
|
|
@keyframes rotate-360 {
|
|
0% {
|
|
transform: rotate(0deg);
|
|
}
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|