mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-02-05 11:04:58 -05:00
21 lines
247 B
SCSS
21 lines
247 B
SCSS
@keyframes slideOut {
|
|
from {
|
|
transform: translateX(10rem);
|
|
}
|
|
to {
|
|
transform: translateX(0);
|
|
}
|
|
}
|
|
|
|
@keyframes pulse {
|
|
0% {
|
|
transform: scale(1);
|
|
}
|
|
50% {
|
|
transform: scale(1.1);
|
|
}
|
|
100% {
|
|
transform: scale(1);
|
|
}
|
|
}
|