style: 채번규칙 카드 내부 여백 축소

- CardHeader: py-3 → py-2 (12px → 8px)
- CardContent: py-3 → pb-2 (하단만 8px)
- 더 컴팩트한 카드 레이아웃
This commit is contained in:
kjs 2025-11-06 10:42:55 +09:00
parent 38734079e8
commit 7132f4a90f
1 changed files with 2 additions and 2 deletions

View File

@ -256,7 +256,7 @@ export const NumberingRuleDesigner: React.FC<NumberingRuleDesignerProps> = ({
}`}
onClick={() => handleSelectRule(rule)}
>
<CardHeader className="px-3 py-3">
<CardHeader className="px-3 py-2">
<div className="flex items-start justify-between">
<div className="flex-1">
<CardTitle className="text-sm font-medium">{rule.ruleName}</CardTitle>
@ -274,7 +274,7 @@ export const NumberingRuleDesigner: React.FC<NumberingRuleDesignerProps> = ({
</Button>
</div>
</CardHeader>
<CardContent className="px-3 py-3 pt-0">
<CardContent className="px-3 pb-2 pt-0">
<NumberingRulePreview config={rule} compact />
</CardContent>
</Card>