-
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.
Merge pull request #59 from TEAM-Hearus/develop
Feat: ๋ง์ดํ์ด์ง ๋ฐ ์ ์ ์ ๋ณด ์ ๋ ฅ
- Loading branch information
Showing
35 changed files
with
1,231 additions
and
36 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
114 changes: 114 additions & 0 deletions
114
src/components/templates/modals/SupplementaryInfoModal/SupplementaryInfoModal.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,114 @@ | ||
@import '../../../../styles/variables/colors.scss'; | ||
@import '../../../../styles/variables/fonts.scss'; | ||
input::placeholder { | ||
color: $light-blue_B3; | ||
} | ||
.modalWrapper { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
position: fixed; | ||
top: 0; | ||
left: 0; | ||
right: 0; | ||
bottom: 0; | ||
background-color: rgba(0, 0, 0, 0.1); | ||
z-index: 10; | ||
} | ||
|
||
.modalContainer { | ||
display: flex; | ||
flex-direction: column; | ||
width: 500px; | ||
height: 580px; | ||
padding: 25px; | ||
background-color: white; | ||
border: none; | ||
border-radius: 20px; | ||
} | ||
.authForm { | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center; | ||
padding: 20px; | ||
gap: 30px; | ||
} | ||
.title { | ||
padding: 25px 80px; | ||
word-break: keep-all; | ||
@include SemiBold_Title_28; | ||
color: $dark-font_33; | ||
line-height: 1.3; | ||
} | ||
.inputBox { | ||
padding: 0px 15px; | ||
gap: 10px; | ||
display: flex; | ||
} | ||
.inputLabel { | ||
display: flex; | ||
flex-direction: column; | ||
gap: 8px; | ||
@include SemiBold_Body_16; | ||
color: $dark-font_33; | ||
} | ||
.schoolInput { | ||
width: 270px; | ||
height: 48px; | ||
border: 1px solid $light-bg_E5; | ||
border-radius: 8px; | ||
padding: 15px; | ||
} | ||
.gradeInput { | ||
width: 100px; | ||
height: 48px; | ||
border: 1px solid $light-bg_E5; | ||
border-radius: 8px; | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
padding: 3px; | ||
} | ||
.arrowBtn { | ||
border: 0; | ||
background-color: $white_FF; | ||
width: 24px; | ||
height: 24px; | ||
} | ||
.gradeNum { | ||
color: $dark-font_33; | ||
} | ||
.majorInput { | ||
width: 380px; | ||
height: 48px; | ||
border: 1px solid $light-bg_E5; | ||
border-radius: 8px; | ||
padding: 15px; | ||
} | ||
.btnBox { | ||
padding: 40px 10px 10px 10px; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
gap: 20px; | ||
} | ||
.saveBtn { | ||
padding: 10px; | ||
width: 380px; | ||
height: 48px; | ||
@include SemiBold_Body_16; | ||
color: $white_FF; | ||
background-color: $brand-point; | ||
border: 0; | ||
border-radius: 8px; | ||
cursor: pointer; | ||
} | ||
.nextBtn { | ||
@include Medium_Sub_14; | ||
color: $light-font_9E; | ||
text-decoration: underline; | ||
border: none; | ||
background-color: $white_FF; | ||
cursor: pointer; | ||
} |
Oops, something went wrong.