mirror of
https://github.com/appwrite/console.git
synced 2026-06-06 19:27:48 +00:00
Add breathing animation to SVG icons
This commit is contained in:
@@ -90,6 +90,19 @@
|
||||
:global(svg) {
|
||||
height: 128px;
|
||||
width: 128px;
|
||||
animation: breathe 1.5s ease-in-out infinite;
|
||||
|
||||
@keyframes breathe {
|
||||
0% {
|
||||
transform: scale(1);
|
||||
}
|
||||
50% {
|
||||
transform: scale(1.1);
|
||||
}
|
||||
100% {
|
||||
transform: scale(1);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user