Skip to content

Commit

Permalink
Feat: 연간 일정 및 로그인 실패 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
cjy3458 committed Feb 29, 2024
1 parent 3ffa5d4 commit 79d5a77
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 37 deletions.
6 changes: 3 additions & 3 deletions src/components/home/plan/component/PlanBox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ const PlanBox = () => {
const CurriculumData = [
{
date: '3월',
title: '트랙별\n세션 시작',
title: '1학기\n세션 시작',
},
{
date: '6월',
date: '5월',
title: '아이디어톤',
},
{
Expand All @@ -22,7 +22,7 @@ const PlanBox = () => {
},
{
date: '9월',
title: '트랙별\n스터디 시작',
title: '2학기\n세션 시작',
},
{
date: '12월',
Expand Down
2 changes: 1 addition & 1 deletion src/components/home/plan/component/PlanTitleItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const Title = styled.div`
font-style: normal;
text-align: center;
@media (min-width: 1024px) {
line-height: 30px;
line-height: 20px;
}
@media (max-width: 1024px) {
padding: 1rem;
Expand Down
61 changes: 28 additions & 33 deletions src/components/login/failed/FailedMessage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,52 +5,47 @@ import Image from 'next/image';
import alert from '@image/alert.png';

const FailedMessage = () => {
return (
<MessageWrapper>
<div>
<Image src={alert} alt='알림' width='20px' height='20px' />
<StMessageText>알림</StMessageText>
</div>
<StMessageText>LIKE LION 계정으로만 로그인이 가능합니다.</StMessageText>
</MessageWrapper>
);
return (
<MessageWrapper>
<div>
<Image src={alert} alt="알림" width="20px" height="20px" />
<StMessageText>알림</StMessageText>
</div>
<StMessageText>로그인 실패: 등록되지 않은 이메일입니다. 올바른 이메일을 입력해주세요.</StMessageText>
</MessageWrapper>
);
};

export default FailedMessage;

const MessageWrapper = styled.div`
display: flex;
flex-direction: column;
justify-content: space-evenly;
align-items: center;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 46rem;
height: 12rem;
padding: 2rem 0;
width: 46rem;
height: 12rem;
padding: 2rem 0;
background: #F5F5F5;
border-radius: 20px;
background: #f5f5f5;
border-radius: 20px;
div{
div {
display: flex;
justify-content: center;
align-items: center;
div{
margin-left: 5px;
div {
margin-left: 5px;
}
}
}
`;

const StMessageText = styled.div`
font-family: 'Pretendard';
font-style: normal;
font-weight: 500;
font-size: 17px;
color: #2D2D2D;
/* margin-top: 7px; */
`

font-family: 'Pretendard';
font-style: normal;
font-weight: 500;
font-size: 17px;
color: #2d2d2d;
`;

0 comments on commit 79d5a77

Please sign in to comment.