Skip to content
This repository was archived by the owner on May 6, 2025. It is now read-only.

Commit 5a8de3a

Browse files
committed
fix: mobile header to lg
1 parent f9f2960 commit 5a8de3a

File tree

4 files changed

+2233
-2316
lines changed

4 files changed

+2233
-2316
lines changed

.playground/nuxt.config.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,10 @@ export default defineNuxtConfig({
99
trailingSlash: true
1010
},
1111
},
12+
13+
experimental: {
14+
watcher: 'parcel'
15+
},
16+
17+
devtools: true
1218
})

components/TheHeader.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const linkClass = 'py-4 px-5 flex flex-row gap-2 items-center hover:text-primary
3131
class="h-[40px] w-[40px] md:h-[50px] md:w-[50px] text-black hover:text-primary-base motion-safe:transition-all motion-safe:duration-300"
3232
/>
3333
</NuxtLink>
34-
<nav aria-labelledby="primary-nav" class="hidden md:block text-sm leading-[1.125rem]">
34+
<nav aria-labelledby="primary-nav" class="hidden lg:block text-sm leading-[1.125rem]">
3535
<span id="primary-nav" class="sr-only">{{ srNavigationTitle }}</span>
3636
<ul class="flex flex-row justify-center font-medium">
3737
<template v-for="item in navigation" :key="item._path">
@@ -87,7 +87,7 @@ const linkClass = 'py-4 px-5 flex flex-row gap-2 items-center hover:text-primary
8787
</ul>
8888
</nav>
8989
</div>
90-
<div class="md:hidden flex flex-row items-center">
90+
<div class="lg:hidden flex flex-row items-center">
9191
<TheHeaderDialog :sr-navigation-title="dialog.srNavigationTitle" :sr-dialog-button-title="dialog.srDialogButtonTitle" />
9292
</div>
9393
</BaseSection>

package.json

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,20 +26,22 @@
2626
"ci:publish": "zx scripts/publish.mjs"
2727
},
2828
"devDependencies": {
29+
"@nuxt/devtools": "^0.4.2",
2930
"@nuxtjs/eslint-config-typescript": "^12.0.0",
30-
"eslint": "^8.36.0",
31+
"eslint": "^8.39.0",
3132
"typescript": "^4.9.5",
3233
"zx": "^7.2.1"
3334
},
3435
"dependencies": {
35-
"@headlessui/vue": "^1.7.12",
36-
"@nuxt/content": "^2.5.2",
37-
"@nuxtjs/fontaine": "^0.2.4",
38-
"@nuxtjs/tailwindcss": "^6.6.0",
36+
"@headlessui/vue": "^1.7.13",
37+
"@nuxt/content": "^2.6.0",
38+
"@nuxtjs/fontaine": "^0.2.5",
39+
"@nuxtjs/tailwindcss": "^6.6.6",
40+
"@parcel/watcher": "^2.1.0",
3941
"@tailwindcss/typography": "^0.5.9",
40-
"nuxt": "^3.3.1",
42+
"nuxt": "^3.4.2",
4143
"nuxt-icon": "^0.3.3",
42-
"nuxt-seo-kit": "^1.3.5",
44+
"nuxt-seo-kit": "^1.3.7",
4345
"tailwindcss-border-gradient-radius": "^3.0.1"
4446
},
4547
"packageManager": "pnpm@8.3.1"

0 commit comments

Comments
 (0)