거래처관리-품목등록 화면 컴포넌트 제작

This commit is contained in:
SeongHyun Kim
2025-11-14 16:30:38 +09:00
parent e21ec4c7b7
commit 361cb56a1d
8 changed files with 604 additions and 2 deletions

View File

@@ -76,8 +76,8 @@ export const TextDisplayComponent: React.FC<TextDisplayComponentProps> = ({
: componentConfig.textAlign === "right"
? "flex-end"
: "flex-start",
wordBreak: "break-word",
overflow: "hidden",
whiteSpace: "nowrap", // ← 한 줄로 유지 // ← 넘치는 부분 숨김
textOverflow: "ellipsis", // ← 넘치면 ... 표시 (선택사항)
transition: "all 0.2s ease-in-out",
boxShadow: "none",
};