Commit 8dc8d3f 1 parent c33966c commit 8dc8d3f Copy full SHA for 8dc8d3f
File tree 2 files changed +8
-1
lines changed
2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ import { Icon } from "astro-icon/components";
3
3
4
4
import { mobileNavId } from " @/components/navigation/constants" ;
5
5
import NavLink from " @/components/navigation/nav-link.astro" ;
6
+ import Search from " @/components/search.astro" ;
6
7
import type { Navigation } from " @/lib/content/types" ;
7
8
import navigation from " ~/content/navigation.json" ;
8
9
---
@@ -49,4 +50,10 @@ import navigation from "~/content/navigation.json";
49
50
})
50
51
}
51
52
</ul >
53
+
54
+ <hr class =" my-6" />
55
+
56
+ <div class =" flex justify-end" >
57
+ <Search />
58
+ </div >
52
59
</div >
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ const { t } = await createI18n(Astro.currentLocale as Locale | undefined);
21
21
22
22
<dialog
23
23
aria-label ={ t (" Search.search" )}
24
- class =" fixed mx-auto min-h-full w-full max-w-screen-md rounded-lg border bg-[#f1f1f1] backdrop:bg-[#545864a8] backdrop:backdrop-blur-sm open:grid sm:mt-[5rem] sm:max-h-[calc(100%-10rem)] sm:min-h-[16rem] sm:shadow-lg"
24
+ class =" fixed mx-auto min-h-full w-full max-w-screen-md border bg-[#f1f1f1] backdrop:bg-[#545864a8] backdrop:backdrop-blur-sm open:grid sm:mt-[5rem] sm:max-h-[calc(100%-10rem)] sm:min-h-[16rem] sm:rounded-lg sm:shadow-lg"
25
25
>
26
26
<div class =" grid size-full gap-y-4 px-8 py-6" data-dialog-content >
27
27
<div class =" relative mt-8" >
You can’t perform that action at this time.
0 commit comments