fix(router): Scroll to top delayed to fix transition overlap and reset min-height on App layout

This commit is contained in:
2026-03-12 14:03:25 -05:00
parent 1d3f0ce2fa
commit 0e43ce70d1
2 changed files with 11 additions and 7 deletions

View File

@ -249,7 +249,7 @@ body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
min-height: 100vh;
overflow-x: hidden;
background-color: var(--bg-primary);
color: var(--text-primary);
@ -264,7 +264,7 @@ body {
#app {
width: 100%;
height: 100vh;
min-height: 100vh;
display: flex;
flex-direction: column;
}