Skip to content

Commit

Permalink
fix: 교실이동 디자인 수정
Browse files Browse the repository at this point in the history
fix: 교실이동 디자인 수정
  • Loading branch information
heedda authored Apr 23, 2024
2 parents 38b78a2 + b924eaa commit 183eade
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/app/attendanceCheck/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const attendanceCheck = () => {
try {
await attendanceSave(updatedData, {
onSuccess: () => {
//location.reload();
alert("저장되었습니다");
},
onError: (error) => {
alert(error.name);
Expand Down
8 changes: 4 additions & 4 deletions src/components/classChange/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@ const ChangeClass: React.FC<ChangeClassProps> = ({
</div>
) : (
<div
className={`whitespace-nowrap rounded-lg justify-between flex bg-white gap-10 w-max px-6 py-5`}
className={`whitespace-nowrap rounded-lg justify-between flex bg-white gap-10 w-full px-4 py-3`}
>
<div className="text-Button-L text-neutral-50">{student}</div>
<div className="flex gap-4 text-Button-L text-neutral-50">
<div className=" text-sub-title4-M text-neutral-50">{student}</div>
<div className="flex gap-4 text-sub-title4-M text-neutral-50">
{prevClass}
<Image src={nextArrow} alt="" />
{nextClass}
<span className=" text-primary-300">{nextClass}</span>
</div>
</div>
)}
Expand Down

0 comments on commit 183eade

Please sign in to comment.