From 58427fb8e05332be384d523acf9dbf821c37e2db Mon Sep 17 00:00:00 2001 From: SeongHyun Kim Date: Fri, 21 Nov 2025 17:00:25 +0900 Subject: [PATCH] =?UTF-8?q?style(ui):=20=EB=B0=B0=EA=B2=BD=EC=83=89=20?= =?UTF-8?q?=ED=86=B5=EC=9D=BC=20=EB=B0=8F=20=EC=8A=A4=ED=81=AC=EB=A1=A4=20?= =?UTF-8?q?=EC=B5=9C=EC=A0=81=ED=99=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - autocomplete-search-input: !bg-background 강제 적용 - section-paper: 배경색 진하게(bg-muted/40), 기본 테두리 활성화, overflow-visible - modal-repeater-table: tbody 흰색 배경, 스크롤 높이 제한(240px), 헤더 고정 - autocomplete 드롭다운: z-index 100으로 상향 배경색 통일로 일관된 디자인, 스크롤로 공간 효율 개선 --- .../AutocompleteSearchInputComponent.tsx | 4 ++-- .../modal-repeater-table/RepeaterTable.tsx | 8 ++++---- .../section-paper/SectionPaperComponent.tsx | 12 ++++++------ 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/frontend/lib/registry/components/autocomplete-search-input/AutocompleteSearchInputComponent.tsx b/frontend/lib/registry/components/autocomplete-search-input/AutocompleteSearchInputComponent.tsx index 263cb294..e3572e33 100644 --- a/frontend/lib/registry/components/autocomplete-search-input/AutocompleteSearchInputComponent.tsx +++ b/frontend/lib/registry/components/autocomplete-search-input/AutocompleteSearchInputComponent.tsx @@ -175,7 +175,7 @@ export function AutocompleteSearchInputComponent({ onFocus={handleInputFocus} placeholder={placeholder} disabled={disabled} - className="h-8 pr-16 text-xs sm:h-10 sm:text-sm" + className="h-8 pr-16 text-xs sm:h-10 sm:text-sm !bg-background" />
{loading && ( @@ -198,7 +198,7 @@ export function AutocompleteSearchInputComponent({ {/* 드롭다운 결과 */} {isOpen && (results.length > 0 || loading) && ( -
+
{loading && results.length === 0 ? (
diff --git a/frontend/lib/registry/components/modal-repeater-table/RepeaterTable.tsx b/frontend/lib/registry/components/modal-repeater-table/RepeaterTable.tsx index 879cbce5..c9aa2cfd 100644 --- a/frontend/lib/registry/components/modal-repeater-table/RepeaterTable.tsx +++ b/frontend/lib/registry/components/modal-repeater-table/RepeaterTable.tsx @@ -118,10 +118,10 @@ export function RepeaterTable({ }; return ( -
-
+
+
- + - + {data.length === 0 ? (
# @@ -141,7 +141,7 @@ export function RepeaterTable({