Skip to content

Commit 43f33c6

Browse files
committed
fix: resolve syntax error in BaseNavbar (#2541)
1 parent 73552e5 commit 43f33c6

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

src/lib/components/navbar.svelte

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@
123123
<Icon icon={IconMenuAlt4} />
124124
</button>
125125
</div>
126+
126127
<a
127128
href={currentOrg?.$id ? `${base}/organization-${currentOrg?.$id}` : base}
128129
class="only-desktop">
@@ -195,6 +196,14 @@
195196
<Support bind:show={showSupport} />
196197
</svelte:fragment>
197198
</DropList>
199+
<Button.Anchor
200+
variant="compact"
201+
size="s"
202+
href="https://appwrite.io/docs"
203+
target="_blank"
204+
rel="noreferrer">
205+
Docs
206+
</Button.Anchor>
198207
</Layout.Stack>
199208
<Layout.Stack direction="row">
200209
<Tooltip>
@@ -392,15 +401,12 @@
392401
}
393402
}
394403
395-
/* The default drop list has a max-inline width of 280px, which squeezes the support modal. */
396404
:global(.extended-width) {
397405
max-inline-size: none;
398-
399-
/* `desltop` is not a typo—it comes from the `pink2/legacy` module! */
400406
inline-size: var(--p-drop-width-size-desltop);
401407
}
402408
403409
:global(.keepTransformTransition span) {
404410
transition: transform 0.2s ease-out !important;
405411
}
406-
</style>
412+
</style>

0 commit comments

Comments
 (0)