-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
리덕스 로직 수정 및 채널톡 로고, 사용자경험을 위한 접근성 설계 (#42)
리덕스 로직 수정 및 채널톡 로고, 사용자경험을 위한 접근성 설계 (#42)
- Loading branch information
Showing
11 changed files
with
1,939 additions
and
1,448 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,46 @@ | ||
/** @jsxImportSource @emotion/react */ | ||
import { css, keyframes } from "@emotion/react"; | ||
import React from 'react' | ||
import { Button, Modal, Section } from '../emotion/component' | ||
import oops from '../../images/oops.png'; | ||
import React from "react"; | ||
import { Button, Modal, Section } from "../emotion/component"; | ||
import notTime from "../../images/notTime.png"; | ||
import { Link } from "react-router-dom"; | ||
import { fadeUp } from "../../styles/Keyframes"; | ||
|
||
export default function NotTime() { | ||
return ( | ||
<div css={css` | ||
position: absolute; | ||
top: 50%; | ||
left: 50%; | ||
transform: translate(-50%, -50%); | ||
width: 60%; | ||
return ( | ||
<div | ||
css={css` | ||
position: absolute; | ||
top: 50%; | ||
left: 50%; | ||
transform: translate(-50%, -50%); | ||
width: 60%; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
`}> | ||
<img alt="404" src={oops} css={css` | ||
width: 8.5em; | ||
animation: ${fadeUp} 1s ease-in-out; | ||
`} /> | ||
<span css={css` | ||
font-family: 'Pretendard-Bold'; | ||
letter-spacing: -0.03em; | ||
color: #333d4b; | ||
margin-top: 1em; | ||
font-size: 15px; | ||
animation: ${fadeUp} 1s ease-in-out; | ||
`}>현재는 예비 사자 모집 기간이 아니에요!</span> | ||
</div> | ||
) | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
`} | ||
> | ||
<img | ||
alt="404" | ||
src={notTime} | ||
css={css` | ||
width: 19.5em; | ||
animation: ${fadeUp} 1s ease-in-out; | ||
`} | ||
/> | ||
{/* <span | ||
css={css` | ||
font-family: "Pretendard-Bold"; | ||
letter-spacing: -0.03em; | ||
color: #333d4b; | ||
margin-top: 1em; | ||
font-size: 15px; | ||
animation: ${fadeUp} 1s ease-in-out; | ||
`} | ||
> | ||
현재는 예비 사자 모집 기간이 아니에요! | ||
</span> */} | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,50 @@ | ||
/** @jsxImportSource @emotion/react */ | ||
import { css, keyframes } from "@emotion/react"; | ||
import React from 'react' | ||
import { Button, Modal, Section } from '../emotion/component' | ||
import oops from '../../images/oops.png'; | ||
import React from "react"; | ||
import { Button, Modal, Section } from "../emotion/component"; | ||
import oops from "../../images/oops.png"; | ||
import { Link } from "react-router-dom"; | ||
import { fadeUp } from "../../styles/Keyframes"; | ||
|
||
export default function NotWidth() { | ||
return ( | ||
<div css={css` | ||
position: absolute; | ||
top: 50%; | ||
left: 50%; | ||
transform: translate(-50%, -50%); | ||
width: 60%; | ||
return ( | ||
<div | ||
css={css` | ||
position: absolute; | ||
top: 50%; | ||
left: 50%; | ||
transform: translate(-50%, -50%); | ||
width: 60%; | ||
display: none; | ||
flex-direction: column; | ||
align-items: center; | ||
display: none; | ||
flex-direction: column; | ||
align-items: center; | ||
@media (max-width: 1024px) { | ||
display: flex; | ||
} | ||
`}> | ||
<img alt="404" src={oops} css={css` | ||
width: 8.5em; | ||
animation: ${fadeUp} 1s ease-in-out; | ||
`} /> | ||
<span css={css` | ||
font-family: 'Pretendard-Bold'; | ||
letter-spacing: -0.03em; | ||
color: #333d4b; | ||
margin-top: 1em; | ||
font-size: 15px; | ||
animation: ${fadeUp} 1s ease-in-out; | ||
`}>원활한 지원환경을 위해 <br /> PC 또는 태블릿으로 접속해주세요!</span> | ||
</div> | ||
) | ||
@media (max-width: 1024px) { | ||
display: flex; | ||
} | ||
`} | ||
> | ||
<img | ||
alt="404" | ||
src={oops} | ||
css={css` | ||
width: 8.5em; | ||
animation: ${fadeUp} 1s ease-in-out; | ||
`} | ||
/> | ||
<span | ||
css={css` | ||
font-family: "Pretendard-Bold"; | ||
letter-spacing: -0.03em; | ||
color: #333d4b; | ||
margin-top: 1em; | ||
font-size: 15px; | ||
animation: ${fadeUp} 1s ease-in-out; | ||
`} | ||
> | ||
원활한 지원환경을 위해 <br /> PC 또는 태블릿으로 접속해주세요! | ||
</span> | ||
</div> | ||
); | ||
} |
Oops, something went wrong.