Skip to content

Commit

Permalink
Merge pull request #35 from yu-senier-project/feat/login
Browse files Browse the repository at this point in the history
fix: ui 수정
  • Loading branch information
jungmyunggi authored Jun 4, 2024
2 parents 604013a + 39eec57 commit b249235
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/component/registration/StepCompanySelection.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ function StepCompanySelection({
</button>
</div>
<h2 className="title">가입하기</h2>

<Input size="Large" name="companyName" onChange={handleCompanyName} autocomplete={"off"} />
<div className="company-list">
{companys.length > 0 ? (
Expand Down
10 changes: 7 additions & 3 deletions src/styles/registerModal.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,29 +4,33 @@
left: 50%;
transform: translate(-50%, -50%);
padding: 20px;
width: 50vw;
height: 60vh;
width: 60vw;
height: 80vh;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;

.title {
text-align: start;
width: 70%;
margin-top: 0px;
margin-bottom: 20px;
position: fixed;
top:5%;
}

.header {
display: flex;
justify-content: space-between;
width: 100%;
height: 50px;

position: fixed;
top: 0%;
.close-button {
background-color: transparent;
border: none;
Expand Down

0 comments on commit b249235

Please sign in to comment.