메일 관리 작업 저장용 커밋

This commit is contained in:
leeheejin
2025-10-01 16:15:53 +09:00
parent 2a8841c6dc
commit 0209be8fd6
65 changed files with 8636 additions and 2145 deletions

View File

@@ -75,9 +75,9 @@ export const TextDisplayComponent: React.FC<TextDisplayComponentProps> = ({
color: componentConfig.color || "#3b83f6",
textAlign: componentConfig.textAlign || "left",
backgroundColor: componentConfig.backgroundColor || "transparent",
padding: componentConfig.padding || "0",
borderRadius: componentConfig.borderRadius || "0",
border: componentConfig.border || "none",
padding: componentConfig.padding || "8px 12px",
borderRadius: componentConfig.borderRadius || "8px",
border: componentConfig.border || "1px solid #e5e7eb",
width: "100%",
height: "100%",
display: "flex",
@@ -90,6 +90,8 @@ export const TextDisplayComponent: React.FC<TextDisplayComponentProps> = ({
: "flex-start",
wordBreak: "break-word",
overflow: "hidden",
transition: "all 0.2s ease-in-out",
boxShadow: "0 1px 2px 0 rgba(0, 0, 0, 0.05)",
};
return (