fix: Movido padding superior al layout principal para evitar solapamiento y limpieza de estilos globales

This commit is contained in:
2026-02-22 13:57:31 -05:00
parent bca1749291
commit 441cf298e3
2 changed files with 3 additions and 9 deletions

View File

@ -104,16 +104,9 @@ body {
#app { #app {
width: 100%; width: 100%;
min-height: 100vh; height: 100vh;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
padding-top: 64px; /* Altura exacta del AppHeader */
}
/* Compensación extra para títulos de vista y espaciado premium */
main {
flex: 1;
padding-top: 15px;
} }
/* Global Utilities */ /* Global Utilities */

View File

@ -30,9 +30,10 @@ const authStore = useAuthStore();
flex: 1; flex: 1;
overflow-y: auto; overflow-y: auto;
overflow-x: hidden; overflow-x: hidden;
background: transparent; /* Permitir ver fondos de páginas */ background: transparent;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
padding-top: 64px; /* Compensar AppHeader fijo */
} }
.has-bottom-nav { .has-bottom-nav {