Skip to content

Commit

Permalink
[SP0] 에러페이지 QA 반영 (#381)
Browse files Browse the repository at this point in the history
* feat: 문의하기 링크 왈라폼->카톡채널 변경

* design: 모바일뷰 사이즈 다운

* fix: vh->dvh 수정
  • Loading branch information
lydiacho authored Mar 26, 2024
1 parent 1785519 commit 81f9cb2
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 12 deletions.
6 changes: 1 addition & 5 deletions src/components/Footer/MakersNForm/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,7 @@ const MakersNForm: FC = () => {
>
만든 사람들
</St.FooterLink>
<St.FooterLink
href="https://walla.my/sopt_official"
target="_blank"
rel="noopener noreferrer"
>
<St.FooterLink href="https://pf.kakao.com/_sxaIWG" target="_blank" rel="noopener noreferrer">
의견 제안하기
</St.FooterLink>
</St.FooterForm>
Expand Down
1 change: 0 additions & 1 deletion src/components/common/RoundButton/style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ export const Root = styled.button`
display: flex;
align-items: center;
height: 60px;
padding: 12px 28px;
border-radius: 99px;
background: ${colors.gray10};
Expand Down
2 changes: 1 addition & 1 deletion src/views/ErrorPage/ErrorPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ function ErrorPage({ code }: ErrorPageProps) {
</S.TopSection>
{code === 500 && (
<S.ContactLink
href="https://walla.my/sopt_official"
href="https://pf.kakao.com/_sxaIWG"
target="_blank"
rel="noopener noreferrer"
>
Expand Down
2 changes: 1 addition & 1 deletion src/views/ErrorPage/components/ErrorCode.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default function ErrorCode({ code }: ErrorCodeProps) {
const isMobile = useIsMobile('428px');
const SIZE = {
height: 92,
icon: 150,
icon: 140,
};

const codeVariant = {
Expand Down
12 changes: 8 additions & 4 deletions src/views/ErrorPage/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ export const Root = styled.main`
position: relative;
width: 100%;
height: 100vh;
height: 100dvh;
min-height: 400px;
padding-bottom: 20vh;
padding-bottom: 20dvh;
overflow: scroll;
`;
Expand All @@ -27,14 +27,18 @@ export const TopSection = styled.section`
export const ErrorText = styled.p`
color: #fcfcfc;
font-size: calc(24px + 1vw);
font-size: 28px;
font-weight: 600;
line-height: 150%;
letter-spacing: -0.96px;
@media (max-width: 428px) {
font-size: 24px;
}
`;
export const ContactLink = styled(Link)`
position: absolute;
bottom: 17vh;
bottom: 17dvh;
color: #fff;
font-size: 24px;
Expand Down

0 comments on commit 81f9cb2

Please sign in to comment.