Skip to content

Commit

Permalink
[ Web ] [ Feat ] auth-school 건너뛰기 교체 (#40)
Browse files Browse the repository at this point in the history
  • Loading branch information
jamooooong committed Nov 2, 2024
1 parent 3a14730 commit 61d7c71
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,9 @@ export const authNumberDivStyle = style({
});

export const skipButtonStyle = style({
...globalTheme.fonts.headerReg16,
position: 'absolute',
right: 0,
bottom: 9,
color: globalTheme.colors.blue_33,
});

export const InputMenuPlaceholderStyle = style({
Expand Down
19 changes: 18 additions & 1 deletion apps/web/src/app/auth/_components/authSchool/authSchool.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { useState } from 'react';
import CustomAlertDialog from '@/shared/components/alertDialog/AlertDialog';
import Button from '@/shared/components/button/button';
import Input from '@/shared/components/input/input';
import {
Expand Down Expand Up @@ -158,7 +159,23 @@ const AuthSchool = ({ handleNextStep, handle대학교변경 }: AuthSchoolProps)
<Button onClick={handle인증번호검증}>다음</Button>
</div>

<button className={skipButtonStyle}>건너뛰기</button>
<div className={skipButtonStyle}>
<CustomAlertDialog
att="yesOrNo"
variant="textBtn"
color="blue"
title="알림!"
description={[
'소속 대학교 등록을 건너뜁니다.',
<br key="br" />,
'"학교 없음"으로 표시됩니다.',
]}
cancelText="취소"
confirmText="확인"
triggerText="건너뛰기"
onConfirm={() => {}}
/>
</div>
</div>
</div>
</section>
Expand Down

0 comments on commit 61d7c71

Please sign in to comment.