Skip to content

Commit 837c94b

Browse files
committed
remove borders from AppHeader
1 parent e9b9527 commit 837c94b

3 files changed

Lines changed: 9 additions & 10 deletions

File tree

app/components/AppHeader.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ onKeyStroke(
256256
<LinkBase
257257
v-for="link in desktopLinks"
258258
:key="link.name"
259-
class="border-none"
259+
class="border-0"
260260
variant="button-secondary"
261261
:to="link.to"
262262
:aria-keyshortcuts="link.keyshortcut"

app/components/Header/AccountMenu.client.vue

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,10 @@ function openAuthModal() {
5656
</script>
5757

5858
<template>
59-
<div ref="accountMenuRef" class="relative flex min-w-28 justify-end">
59+
<div ref="accountMenuRef">
6060
<ButtonBase
6161
type="button"
62+
class="border-0"
6263
:aria-expanded="isOpen"
6364
aria-haspopup="true"
6465
@click="isOpen = !isOpen"
@@ -136,7 +137,7 @@ function openAuthModal() {
136137
>
137138
<div v-if="isOpen" class="absolute inset-ie-0 top-full pt-2 w-72 z-50" role="menu">
138139
<div
139-
class="bg-bg-subtle/80 backdrop-blur-sm border border-border-subtle rounded-lg shadow-lg shadow-bg-elevated/50 overflow-hidden px-1"
140+
class="bg-bg-subtle/80 backdrop-blur-sm border border-border-subtle rounded-lg shadow-lg shadow-bg-elevated/10 overflow-hidden px-1"
140141
>
141142
<!-- Connected accounts section -->
142143
<div v-if="hasAnyConnection" class="py-1">
Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
<template>
2-
<div class="relative flex min-w-28 justify-end">
3-
<div
4-
class="inline-flex gap-x-1 items-center justify-center font-mono border border-border rounded-md text-sm px-4 py-2 bg-transparent text-fg"
5-
>
6-
<span class="font-sans text-sm text-fg-muted">{{ $t('account_menu.connect') }}</span>
7-
<span class="i-carbon-chevron-down w-3 h-3 text-fg-muted" aria-hidden="true" />
8-
</div>
2+
<div
3+
class="inline-flex gap-x-1.5 items-center justify-center font-mono rounded-md text-sm px-4 py-2 bg-transparent text-fg"
4+
>
5+
<span class="font-sans text-sm text-fg-muted">{{ $t('account_menu.connect') }}</span>
6+
<span class="i-carbon-chevron-down w-3 h-3 text-fg-muted" aria-hidden="true" />
97
</div>
108
</template>

0 commit comments

Comments
 (0)