diff --git a/docs/history.md b/docs/history.md index c134320..7875e25 100644 --- a/docs/history.md +++ b/docs/history.md @@ -1,5 +1,11 @@ # 의사결정 이력 +## 2026-05-08 v0.0.52 + +### 목록 Featured 아이콘 정렬과 상세 메타 구분자 + +홈/태그 목록에서 Featured 아이콘을 제목 텍스트 라인에 단순 `inline-flex`+음수 마진으로 올리면, 특정 폰트 렌더링에서 라인박스 높이가 달라져 카드 높이가 미묘하게 흔들릴 수 있다. 아이콘을 `h-4 w-4` 고정 박스로 만들고 `items-center`로 정렬해 제목 줄 높이를 안정화했다. 게시물 상세의 제목 아래 메타 정보는 원본 스킨처럼 `/` 구분자를 매번 수동으로 넣지 않고, 래퍼에서 `after` 규칙으로 일관되게 출력하도록 통일했다. + ## 2026-05-08 v0.0.51 ### 사이드바 고정 높이와 발행일 포맷 diff --git a/docs/update.md b/docs/update.md index b58fc60..7c6b98a 100644 --- a/docs/update.md +++ b/docs/update.md @@ -1,5 +1,10 @@ # 업데이트 이력 +## v0.0.52 + +- 홈/태그 목록 Featured 아이콘이 제목 줄 높이를 흔들지 않도록 고정 크기(`h-4 w-4`)·정렬 방식으로 보정. +- 게시물 상세 제목 아래 메타 정보에 `/` 구분자 표시를 `after` 규칙으로 통일. + ## v0.0.51 - 좌·우 사이드바 데스크톱 열 높이를 `calc(100vh - 57px)`로 고정해 내부 스크롤·하단 푸터 배치가 뷰포트 기준으로 맞도록 수정. diff --git a/package.json b/package.json index 2e85b4b..9da7075 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "sori.studio", - "version": "0.0.51", + "version": "0.0.52", "private": true, "type": "module", "scripts": { diff --git a/pages/index.vue b/pages/index.vue index aec09bc..0a40985 100644 --- a/pages/index.vue +++ b/pages/index.vue @@ -350,8 +350,8 @@ const scrollFeatured = (direction) => { >

- - + + @@ -370,7 +370,7 @@ const scrollFeatured = (direction) => { / {{ post.tagName }} diff --git a/pages/post/[slug].vue b/pages/post/[slug].vue index d7830a5..769cafb 100644 --- a/pages/post/[slug].vue +++ b/pages/post/[slug].vue @@ -131,7 +131,7 @@ useHead(() => ({

-
+
diff --git a/pages/tag/[slug].vue b/pages/tag/[slug].vue index 301c8a8..75de235 100644 --- a/pages/tag/[slug].vue +++ b/pages/tag/[slug].vue @@ -73,8 +73,8 @@ const tagPosts = computed(() => posts.value

- - + + @@ -88,7 +88,7 @@ const tagPosts = computed(() => posts.value / {{ post.tag }}