fix(store-header): adjust category menu structure and set height for categories

This commit is contained in:
2026-08-27 08:46:53 -03:00
parent b0d2cd05bc
commit 1bffefece3
2 changed files with 9 additions and 5 deletions

View File

@@ -152,9 +152,9 @@
</div>
</div>
@if (displayCategories()) {
<div class="store-layout__categories d-none d-md-block">
<div class="container-xl px-3 px-md-4">
<div class="store-layout__categories d-none d-md-block">
<div class="container-xl px-3 px-md-4">
@if (displayCategories()) {
<div class="store-layout__category-menu">
<button
type="button"
@@ -175,7 +175,7 @@
(categorySelect)="onCategorySelect($event)"
/>
</div>
</div>
}
</div>
}
</div>
</header>

View File

@@ -10,6 +10,10 @@
border-bottom: 1px solid var(--border-color);
}
.store-layout__categories {
height: 3.5rem;
}
.store-layout__brand-slot {
min-width: 150px;
}