fix: Implementación de Sticky Header y optimización de área segura (Notch)
This commit is contained in:
@ -20,20 +20,18 @@ const authStore = useAuthStore();
|
||||
.main-layout {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
height: 100vh;
|
||||
min-height: 100vh;
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
background: transparent; /* Permitir ver fondos de páginas */
|
||||
background: var(--bg-primary);
|
||||
}
|
||||
|
||||
.main-content {
|
||||
flex: 1;
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
width: 100%;
|
||||
background: transparent;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
padding-top: 64px; /* Compensar AppHeader fijo */
|
||||
/* El padding-top ya no es necesario porque el header es sticky */
|
||||
}
|
||||
|
||||
.has-bottom-nav {
|
||||
|
||||
Reference in New Issue
Block a user