[READ-ONLY] Mirror of https://github.com/flo-bit/blog-template. minimalistic astro blog template flo-bit.dev/blog-template/
astro blog template
0

Configure Feed

Select the types of activity you want to include in your feed.

Add "Esc" key functionality to close search dialog

+5
+5
src/components/search/CommandPalette.svelte
··· 104 104 105 105 event.preventDefault(); 106 106 } 107 + 108 + // close on escape 109 + if (event.key === "Escape" && $showSearch) { 110 + $showSearch = false; 111 + } 107 112 }} 108 113 /> 109 114