feat: add layout transition

This commit is contained in:
Sonny
2024-05-17 19:26:10 +02:00
committed by Sonny
parent a910b898c7
commit 8077f8f9c9
9 changed files with 29 additions and 41 deletions

View File

@@ -17,3 +17,14 @@ export const rotate = keyframes({
transform: 'rotate(360deg)',
},
});
export const fadeInScale = keyframes({
from: {
opacity: 0,
transform: 'scale(0.95)',
},
to: {
opacity: 1,
transform: 'scale(1)',
},
});