void
-// card: Card
-// column: Column
-// }
-// export default function CardContent({
-// onClose,
-// card,
-// column,
-// }: CardContentProps) {
-// const { id, imageUrl, title, tags, dueDate, assignee } = card
-// const [openModifyCard, setOpenModifyCard] = useState(false)
-// const { title: columnTitle, id: columnId } = column
-// const currentColumn = { columnTitle, columnId }
-// const { modalType, closeModal } = useModalStore()
-
-// const handleBackdropClick = (e: React.MouseEvent
) => {
-// if (e.target === e.currentTarget) {
-// closeModal()
-// }
-// }
-
-// if (!modalType) return null
-
-// return (
-// <>
-//
-//
-//
초대하기
-
-//
{title}
-//
-//
-// }
-// >
-// {/* 드롭다운 내부 메뉴 아이템 */}
-//
setOpenModifyCard(true)}
-// >
-// 수정하기
-//
-//
-// 삭제하기
-//
-//
-//
{
-// onClose()
-// console.log('sdfadfdsgreggsfds')
-// }}
-// />
-//
-
-//
-// 그리드로 관리하기 / 컬럼명은 따로 컴포넌트로 만들어 빼기
-//
{column.title}
-//
-//
설명~~~~~~~~
-//
-//
{assignee.nickname}
-//
{dueDate}
-//
-//
-//
이미지 있으면 이미지
-//
댓글 컴포넌트
-
-// {/* 카드 수정 모달 */}
-// {openModifyCard && (
-//
-// setOpenModifyCard(false)}
-// // columnId={column.id}
-// currentColumn={currentColumn}
-// card={card}
-// />
-//
-// )}
-//
-//
-// >
-// )
-// }
diff --git a/src/app/features/dashboard_Id/Column/Column.tsx b/src/app/features/dashboard_Id/Column/Column.tsx
index 6f4076c..f099f7c 100644
--- a/src/app/features/dashboard_Id/Column/Column.tsx
+++ b/src/app/features/dashboard_Id/Column/Column.tsx
@@ -65,7 +65,7 @@ export default function Column({ column }: { column: ColumnType }) {
}}
data-column-id={id}
className={cn(
- 'BG-gray Border-column flex w-354 shrink-0 flex-col gap-16 p-20 tablet:w-584',
+ 'BG-gray Border-column flex w-354 shrink-0 flex-col gap-16 p-20 mobile:w-308 tablet:w-584',
{
'BG-drag-hovered': isDraggingover,
},
diff --git a/src/app/shared/components/ThemeToggle.tsx b/src/app/shared/components/ThemeToggle.tsx
index d5d7ab5..53a68ab 100644
--- a/src/app/shared/components/ThemeToggle.tsx
+++ b/src/app/shared/components/ThemeToggle.tsx
@@ -15,7 +15,7 @@ export default function ThemeToggle() {
return (
<>