Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions src/views/components/header/header.twig
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@
#}
{% set important_links = theme.settings.get('important_links') %}
<header data-testid="store-header" class="store-header">
{# Bullet Delivery tag — mobile: own full-width row above the top nav
(Figma "Mobile version"). Desktop keeps the inline pill below, next to
scopes. Both instances self-gate on the same backend flag; `lg:hidden`
matches the mobile/desktop split already used for the menu toggle below. #}
<div class="lg:hidden">
<salla-bullet-delivery-tag></salla-bullet-delivery-tag>
</div>

{# Top Nav #}
<div class="top-navbar">
<div class="container flex justify-between">
Expand All @@ -23,6 +31,11 @@
{% endif %}
</div>

{# Bullet Delivery tag — desktop only; mobile instance is above the top nav #}
<div class="hidden lg:block">
<salla-bullet-delivery-tag></salla-bullet-delivery-tag>
</div>

{# Scopes | Branches #}
{% if store.scope %}
<button class="btn--rounded-gray"
Expand Down