Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/app/features/dashboard_Id/components/EditColumnModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ export default function EditColumnModal() {
<button
type="button"
onClick={handleDeleteClick}
className="BG-white Border-btn Text-gray h-54 w-256 rounded-8 px-16 py-10 text-16 font-medium"
className="BG-white Border-btn Text-gray mobile:h-54 mobile:w-144 h-54 w-256 rounded-8 px-16 py-10 text-16 font-medium"
>
μ‚­μ œ
</button>
Expand All @@ -167,7 +167,7 @@ export default function EditColumnModal() {
<button
type="submit"
disabled={isUpdateDisabled}
className={`BG-violet h-54 w-256 rounded-8 px-16 py-10 text-16 font-medium text-white transition-opacity ${
className={`BG-violet mobile:h-54 mobile:w-144 h-54 w-256 rounded-8 px-16 py-10 text-16 font-medium text-white transition-opacity ${
isUpdateDisabled
? 'cursor-not-allowed opacity-50'
: 'hover:opacity-90'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,10 @@ export default function CreateDashboardModal() {
className="fixed inset-0 z-50 flex items-center justify-center bg-black bg-opacity-50"
onClick={handleBackdropClick}
>
<div className="BG-white h-344 w-584 rounded-16 p-32">
<h2 className="Text-black mb-24 text-24 font-bold">μƒˆλ‘œμš΄ λŒ€μ‹œλ³΄λ“œ</h2>
<div className="BG-white mobile:h-312 mobile:w-327 mobile:px-20 mobile:py-16 h-344 w-584 rounded-16 p-32">
<h2 className="Text-black mobile:text-20 mb-24 text-24 font-bold">
μƒˆλ‘œμš΄ λŒ€μ‹œλ³΄λ“œ
</h2>
<DashboardForm
formData={formData}
onChange={handleChange}
Expand Down
2 changes: 1 addition & 1 deletion src/app/shared/components/dashboard/DashboardForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export default function DashboardForm({
return (
<form onSubmit={onSubmit}>
{/* 제λͺ© */}
<div className="mb-24">
<div className="mb-24 text-16">
<Input
labelName="λŒ€μ‹œλ³΄λ“œ 이름"
name="title"
Expand Down
Loading