-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* style: hidden arrow input number type * DMVM-167 feat: create success survey page * DMVM-167 fix: alliance page scroll button
- Loading branch information
Showing
9 changed files
with
155 additions
and
46 deletions.
There are no files selected for viewing
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
36 changes: 36 additions & 0 deletions
36
src/components/Alliance/SuccessSurvey/SuccessSurvey.module.scss
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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
@import '/src/styles/responsive.scss'; | ||
|
||
.SuccessSurveyWrapper { | ||
background-color: #fefdee; | ||
padding: 80px 215px 114px 176px; | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center; | ||
gap: 30px; | ||
@include media(phone, tablet) { | ||
padding: 20px; | ||
} | ||
} | ||
|
||
.SuccessSurveyTitle { | ||
color: var(--Gray-Gray-bk, #000); | ||
text-align: center; | ||
font-size: 36px; | ||
font-weight: 700; | ||
line-height: 48px; /* 133.333% */ | ||
} | ||
|
||
.SuccessSurveyDescription { | ||
color: var(--Gray-Gray-bk, #000); | ||
text-align: center; | ||
font-size: 18px; | ||
font-style: normal; | ||
font-weight: 400; | ||
line-height: 24px; /* 133.333% */ | ||
} | ||
|
||
.SuccessImage { | ||
width: 369px; | ||
height: 341px; | ||
} |
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import React from 'react'; | ||
import * as styles from './SuccessSurvey.module.scss'; | ||
import { StaticImage } from 'gatsby-plugin-image'; | ||
const SuccessSurvey = () => { | ||
return ( | ||
<section className={styles.SuccessSurveyWrapper}> | ||
<div className={styles.SuccessSurveyTitle}>제출완료</div> | ||
<div className={styles.SuccessSurveyDescription}> | ||
몽글에 등록해주셔서 감사합니다. | ||
<br /> | ||
기다려주시면 빠르게 회신드리겠습니다. | ||
</div> | ||
<StaticImage | ||
src="../../../images/lending/lending_apply_image.png" | ||
alt="LendingApplyImage" | ||
className={styles.SuccessImage} | ||
/> | ||
</section> | ||
); | ||
} | ||
|
||
export default SuccessSurvey; |
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
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
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