fix: Movido padding superior al layout principal para evitar solapamiento y limpieza de estilos globales
This commit is contained in:
@ -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 */
|
||||||
|
|||||||
@ -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 {
|
||||||
|
|||||||
Reference in New Issue
Block a user