Files
omniai-web/src/styles/components/page-transition.css
T

18 lines
265 B
CSS
Raw Normal View History

2026-06-02 12:38:01 +08:00
.page-transition {
position: relative;
flex: 1;
min-height: 0;
animation: page-fade-in 150ms ease-out both;
}
@keyframes page-fade-in {
from {
opacity: 0;
transform: translateY(4px);
}
to {
opacity: 1;
transform: translateY(0);
}
}