문서뷰어기능구현

This commit is contained in:
leeheejin
2025-09-29 13:29:03 +09:00
parent 3600621554
commit e0143e9cba
27 changed files with 2812 additions and 247 deletions

View File

@@ -64,7 +64,7 @@ export default function ColumnComponent({
className={cn(
"flex-1 rounded border border-gray-200 p-2",
isSelected && "border-blue-500 bg-blue-50",
isMoving && "cursor-move shadow-lg",
isMoving && "cursor-move",
className,
)}
style={style}

View File

@@ -64,7 +64,7 @@ export default function ContainerComponent({
className={cn(
"rounded-lg border-2 border-dashed border-gray-300 bg-gray-50 p-4",
isSelected && "border-blue-500 bg-blue-50",
isMoving && "cursor-move shadow-lg",
isMoving && "cursor-move",
className,
)}
style={style}

View File

@@ -64,7 +64,7 @@ export default function RowComponent({
className={cn(
"flex gap-4 rounded border border-gray-200 p-2",
isSelected && "border-blue-500 bg-blue-50",
isMoving && "cursor-move shadow-lg",
isMoving && "cursor-move",
className,
)}
style={style}