편집기 인풋 오류 수정 및 탭 컴포넌트 완성

This commit is contained in:
kjs
2025-11-25 13:04:58 +09:00
parent 5e2392c417
commit a0180d66a2
40 changed files with 342 additions and 325 deletions

View File

@@ -109,7 +109,7 @@ export const RowSettingsPanel: React.FC<RowSettingsPanelProps> = ({ row, onUpdat
variant={row.gap === preset ? "default" : "outline"}
size="sm"
onClick={() => onUpdateRow({ gap: preset })}
className="text-xs" style={{ fontSize: "12px" }}
className="text-xs"
>
{GAP_PRESETS[preset].label}
</Button>
@@ -130,7 +130,7 @@ export const RowSettingsPanel: React.FC<RowSettingsPanelProps> = ({ row, onUpdat
variant={row.padding === preset ? "default" : "outline"}
size="sm"
onClick={() => onUpdateRow({ padding: preset })}
className="text-xs" style={{ fontSize: "12px" }}
className="text-xs"
>
{GAP_PRESETS[preset].label}
</Button>