Skip to content

Commit

Permalink
Merge pull request #177 from themoment-team/develop
Browse files Browse the repository at this point in the history
v 1.3.4
  • Loading branch information
hyeongrok7874 committed Oct 16, 2022
2 parents 7bfa271 + ed652f5 commit 831fda5
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 24 deletions.
37 changes: 31 additions & 6 deletions packages/hello-gsm/src/PageContainer/ManualPage/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { Header } from 'components';
import type { NextPage } from 'next';
import * as S from 'PageContainer/InformationPage/style';
import * as DS from 'components/InformationDescription/style';
import * as I from 'Assets/svg';
import styled from '@emotion/styled';
import { css } from '@emotion/react';

Expand All @@ -27,6 +28,28 @@ const ManualPageStyle = styled.div`
}
`;

const KakaoAccountButton = styled.button`
display: flex;
align-items: center;
width: 328px;
height: 45px;
background: #fee500;
border-radius: 10px;
cursor: pointer;
color: #0f0921;
font-size: 20px;
border: none;
p {
text-align: center;
line-height: 45px;
}
svg {
width: 25px;
height: 45px;
margin: 0 40px 0 20px;
}
`;

const ManualPage: NextPage = () => {
const location = () =>
window.open('https://accounts.kakao.com/weblogin/account');
Expand All @@ -47,16 +70,18 @@ const ManualPage: NextPage = () => {
text-align: center;
`}
>
한 PC에서 여러 계정으로 로그인 하기 위해서는{' '}
<DS.Highlight>아래의 이동 버튼</DS.Highlight>을 클릭하여 <br />
<DS.Highlight>카카오 계정 홈페이지</DS.Highlight>{' '}
<DS.Highlight>이동 후 로그아웃 </DS.Highlight>
다른 계정으로 로그인이 필요하신 지원자 분들은 아래의
<br />
<DS.Highlight>카카오계정 홈페이지</DS.Highlight>에서{' '}
<DS.Highlight>로그아웃 후</DS.Highlight>
<br />
다시 <DS.Highlight>Hello,GSM</DS.Highlight> 에서{' '}
<DS.Highlight>Hello,GSM</DS.Highlight> 에서 다른 계정으로{' '}
<DS.Highlight>로그인</DS.Highlight> 부탁드립니다.
</DS.DescriptionText>
</DS.Description>
<S.NextController onClick={location}>이동</S.NextController>
<KakaoAccountButton onClick={location}>
<I.KakaoLogo /> <p>카카오계정 홈페이지</p>
</KakaoAccountButton>
</S.InformationContent>
<S.YellowBall />
<S.BlueBall />
Expand Down
3 changes: 1 addition & 2 deletions packages/hello-gsm/src/PageContainer/MypagePage/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -202,8 +202,7 @@ const MyPage: NextPage<StatusType> = ({
<S.Content
css={css`
${isPC && saved && !submitted && 'height: 440px'}
${isPC && !saved && 'height: 320px'}
${isPC && !acceptable && 'height: 320px'}
${isPC && (!saved || !acceptable) && 'height: 320px'}
`}
>
<S.UserBox>
Expand Down
2 changes: 1 addition & 1 deletion packages/hello-gsm/src/PageContainer/SignInPage/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const SignInPage: NextPage = () => {
<S.SignInForm>
<S.Title>로그인</S.Title>
<S.SignInBtn href={auth.signin()}>
<I.KakaoLogo /> <p>KaKao 로그인</p>
<I.KakaoLogo /> <p>카카오계정으로 로그인</p>
</S.SignInBtn>
</S.SignInForm>
</S.SignInPage>
Expand Down
2 changes: 1 addition & 1 deletion packages/hello-gsm/src/PageContainer/SignInPage/style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export const SignInBtn = styled.a`
svg {
width: 25px;
height: 45px;
margin: 0 60px 0 20px;
margin: 0 40px 0 20px;
}
`;

Expand Down
15 changes: 1 addition & 14 deletions packages/hello-gsm/src/components/BubbleButton/style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,19 +55,6 @@ export const ToCalculator = styled.button`
}
@media ${device.mobile} {
position: static;
font-size: 14px;
width: 240px;
height: 40px;
&:nth-of-type(1) {
line-height: 20px;
padding: 0 20px;
}
&:nth-of-type(2) {
line-height: 20px;
}
:after {
display: none;
}
display: none;
}
`;

2 comments on commit 831fda5

@vercel
Copy link

@vercel vercel bot commented on 831fda5 Oct 16, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

hello-gsm – ./packages/hello-gsm

hello-gsm-hello-gsm.vercel.app
hello-gsm-git-main-hello-gsm.vercel.app
www.hellogsm.kr
hellogsm.kr

@vercel
Copy link

@vercel vercel bot commented on 831fda5 Oct 16, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

hello-gsm-admin – ./packages/hello-gsm-admin

hello-gsm-admin-hello-gsm.vercel.app
hello-gsm-admin.vercel.app
hello-gsm-admin-git-main-hello-gsm.vercel.app
admin.hellogsm.kr

Please sign in to comment.