Skip to content

Commit 9900b17

Browse files
Merge branch 'main' into ui/fix-dropdown-alignment
2 parents cc406b8 + 3cf7fef commit 9900b17

12 files changed

Lines changed: 294 additions & 152 deletions

File tree

app/components/AppFooter.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ const isHome = computed(() => route.name === 'index')
1414
<BuildEnvironment v-if="!isHome" footer />
1515
</div>
1616
<!-- Desktop: Show all links. Mobile: Links are in MobileMenu -->
17-
<div class="hidden sm:flex items-center gap-6">
17+
<div class="hidden sm:flex items-center gap-6 min-h-11">
1818
<NuxtLink :to="{ name: 'about' }" class="link-subtle font-mono text-xs flex items-center">
1919
{{ $t('footer.about') }}
2020
</NuxtLink>
2121
<NuxtLink
2222
:to="{ name: 'privacy' }"
23-
class="link-subtle font-mono text-xs min-h-11 flex items-center gap-1"
23+
class="link-subtle font-mono text-xs flex items-center gap-1"
2424
>
2525
{{ $t('privacy_policy.title') }}
2626
</NuxtLink>

app/components/Modal.client.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ defineExpose({
4343
<dialog
4444
ref="dialogRef"
4545
closedby="any"
46-
class="w-full bg-bg border border-border rounded-lg shadow-xl max-h-[90vh] overflow-y-auto overscroll-contain m-0 m-auto p-6 text-fg focus-visible:outline focus-visible:outline-accent/70"
46+
class="w-[calc(100%-2rem)] bg-bg border border-border rounded-lg shadow-xl max-h-[90vh] overflow-y-auto overscroll-contain m-0 m-auto p-6 text-fg focus-visible:outline focus-visible:outline-accent/70"
4747
:aria-labelledby="modalTitleId"
4848
v-bind="$attrs"
4949
@transitionend="onDialogTransitionEnd"

0 commit comments

Comments
 (0)