mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-03-13 09:00:16 +00:00
## Summary Expanding the covered files to format. One-time formatting pass. To be added to the `.git-blame-ignore-revs` ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-8341-Chore-Oxfmt-formatting-pass-2f56d73d365081f2988fcb7570f9a2a1) by [Unito](https://www.unito.io)
24 lines
461 B
CSS
24 lines
461 B
CSS
@import '@comfyorg/design-system/css/style.css';
|
|
|
|
@media (prefers-reduced-motion: no-preference) {
|
|
/* List transition animations */
|
|
.list-scale-move,
|
|
.list-scale-enter-active,
|
|
.list-scale-leave-active {
|
|
transition:
|
|
opacity 150ms ease,
|
|
transform 150ms ease;
|
|
}
|
|
|
|
.list-scale-enter-from,
|
|
.list-scale-leave-to {
|
|
opacity: 0;
|
|
transform: scale(70%);
|
|
}
|
|
|
|
.list-scale-leave-active {
|
|
position: absolute;
|
|
width: 100%;
|
|
}
|
|
}
|