bedee3ba8d
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
18 lines
265 B
CSS
18 lines
265 B
CSS
.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);
|
|
}
|
|
}
|