feat(search): / 단축키 검색 모달 및 통합 검색 API 추가

- / 및 헤더 검색 클릭으로 모달을 열고 태그·게시물 검색을 제공.
- 태그 검색 범위를 name/slug로 제한하고 IME 조합 입력 대응을 보강.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-05-11 16:12:31 +09:00
parent bcf3acd432
commit ff6526c997
11 changed files with 471 additions and 14 deletions

View File

@@ -60,6 +60,10 @@
overflow: hidden;
}
html.site-search-open {
overflow: hidden;
}
body {
min-width: 320px;
margin: 0;
@@ -75,6 +79,18 @@
}
@layer components {
@keyframes site-search-modal-in {
from {
opacity: 0;
transform: translateY(-6px) scale(0.99);
}
to {
opacity: 1;
transform: translateY(0) scale(1);
}
}
.site-shell {
display: flex;
flex-direction: column;
@@ -96,6 +112,10 @@
@apply px-6 py-4;
}
.site-search-modal__panel--animate {
animation: site-search-modal-in 0.18s ease-out;
}
.post-prose {
@apply max-w-none text-[17px] leading-8;
color: var(--site-text);