자잘한 오류 수정과 스크롤, 헤더 변경완료

This commit is contained in:
leeheejin
2025-10-17 14:52:08 +09:00
parent e53bdd15ef
commit 0a02a6c7ab
21 changed files with 359 additions and 219 deletions

View File

@@ -526,12 +526,9 @@ export function CanvasElement({
<div className="flex cursor-move items-center justify-between border-b border-gray-200 bg-gray-50 p-3">
<span className="text-sm font-bold text-gray-800">{element.customTitle || element.title}</span>
<div className="flex gap-1">
{/* 설정 버튼 (시계, 달력, 기사관리 위젯 자체 설정 UI 사용) */}
{/* 설정 버튼 (기사관리 위젯 자체 설정 UI 사용) */}
{onConfigure &&
!(
element.type === "widget" &&
(element.subtype === "clock" || element.subtype === "calendar" || element.subtype === "driver-management")
) && (
!(element.type === "widget" && element.subtype === "driver-management") && (
<button
className="hover:bg-accent0 flex h-6 w-6 items-center justify-center rounded text-gray-400 transition-colors duration-200 hover:text-white"
onClick={() => onConfigure(element)}