Skip to content

Commit ecc87a3

Browse files
committed
style: revert menu back to old design while using new components
1 parent 4765ef1 commit ecc87a3

2 files changed

Lines changed: 15 additions & 5 deletions

File tree

app/components/AppHeader.vue

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -151,19 +151,29 @@ onKeyStroke(
151151
</div>
152152

153153
<!-- End: Desktop nav items + Mobile menu button -->
154-
<ButtonGroup class="hidden sm:flex flex-shrink-0">
154+
<div class="hidden sm:flex flex-shrink-0">
155155
<!-- Desktop: Compare link -->
156-
<LinkBase variant="button-secondary" :to="{ name: 'compare' }" keyshortcut="c">
156+
<LinkBase
157+
class="border-none"
158+
variant="button-secondary"
159+
:to="{ name: 'compare' }"
160+
keyshortcut="c"
161+
>
157162
{{ $t('nav.compare') }}
158163
</LinkBase>
159164

160165
<!-- Desktop: Settings link -->
161-
<LinkBase variant="button-secondary" :to="{ name: 'settings' }" keyshortcut=",">
166+
<LinkBase
167+
class="border-none"
168+
variant="button-secondary"
169+
:to="{ name: 'settings' }"
170+
keyshortcut=","
171+
>
162172
{{ $t('nav.settings') }}
163173
</LinkBase>
164174

165175
<HeaderAccountMenu />
166-
</ButtonGroup>
176+
</div>
167177

168178
<!-- Mobile: Menu button (always visible, click to open menu) -->
169179
<ButtonBase

app/components/Header/AccountMenu.client.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ function openAuthModal() {
6262
:aria-expanded="isOpen"
6363
aria-haspopup="true"
6464
@click="isOpen = !isOpen"
65-
class="rounded-s-none border-s-0"
65+
class="border-none"
6666
>
6767
<!-- Stacked avatars when connected -->
6868
<div

0 commit comments

Comments
 (0)