style: align header height with sidebar-header height on desktop

This commit is contained in:
VPS 4 Builder
2026-05-25 02:40:28 +02:00
parent 065dee8f12
commit 4ca997625e
2 changed files with 28 additions and 1 deletions
+27
View File
@@ -1429,3 +1429,30 @@ body {
background: #dc3545;
transform: scale(1.1);
}
/* ================================================================
Ajuste de Altura Uniforme para o Header da Galeria e da Sidebar (Desktop)
================================================================ */
@media (min-width: 768px) {
.sidebar-header {
height: 70px !important;
display: flex !important;
align-items: center !important;
padding: 0 20px !important;
box-sizing: border-box !important;
}
.main-content .header {
padding: 0 !important;
box-sizing: border-box !important;
}
.main-content .header .header-content {
height: 70px !important;
padding: 0 20px !important;
display: flex !important;
align-items: center !important;
justify-content: space-between !important;
box-sizing: border-box !important;
}
}