-
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 #114 from PLADI-ALM/feat/PDW-60-edit-user
[PDW-60/feat] 직원 정보 수정
- Loading branch information
Showing
8 changed files
with
259 additions
and
134 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
import styled from 'styled-components'; | ||
|
||
// Modal이 떴을 때의 배경 | ||
export const ModalBackdrop = styled.div` | ||
z-index: 3; //위치지정 요소 | ||
position: fixed; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
background-color: rgba(0, 0, 0, 0.4); | ||
top: 0; | ||
left: 0; | ||
right: 0; | ||
bottom: 0; | ||
` | ||
|
||
// Modal창 | ||
export const ModalView = styled.div` | ||
display: flex; | ||
align-items: center; | ||
flex-direction: column; | ||
border-radius: 10px; | ||
width: 500px; | ||
background-color: #ffffff; | ||
padding: 30px 50px; | ||
box-sizing: border-box; | ||
` | ||
|
||
export const TitleContainer = styled.div` | ||
width: 100%; | ||
display: flex; | ||
align-items: center; | ||
justify-content: space-between; | ||
margin-bottom: 35px; | ||
` | ||
|
||
export const ModalTitle = styled.h2` | ||
color: #8741CB; | ||
margin: 0; | ||
` | ||
|
||
export const ExitBtn = styled.button` | ||
background: none; | ||
width: 40px; | ||
height: 40px; | ||
font-family: NanumSquare_ac; | ||
font-size: 40px; | ||
border: none; | ||
color: #4C4C4C; | ||
cursor: pointer; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
` | ||
|
||
export const AttrsForm = styled.form` | ||
width: 100%; | ||
` | ||
|
||
export const AttrContainer = styled.div` | ||
display: flex; | ||
align-items: center; | ||
margin-bottom: 35px; | ||
` | ||
|
||
export const AttrLabel = styled.div` | ||
width: 120px; | ||
font-size: 20px; | ||
text-align: left; | ||
line-height: 40px; | ||
` | ||
|
||
export const AttrInput = styled.input` | ||
border: 2px solid #E6E6E6; | ||
border-radius: 8px; | ||
height: 40px; | ||
width: 280px; | ||
font-family: NanumSquare_ac; | ||
font-size: 18px; | ||
color: #757575; | ||
padding: 0 10px; | ||
outline: none; | ||
box-sizing: border-box; | ||
` | ||
|
||
// 하단 버튼 컨테이너 | ||
export const BottomBtnContainer = styled.div` | ||
width: 100%; | ||
display: flex; | ||
justify-content: space-around; | ||
` |
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
import styled from 'styled-components'; | ||
|
||
export const MoreBtn = styled.img` | ||
cursor: pointer; | ||
display: flex; | ||
margin: auto; | ||
` | ||
export const MoreModalView = styled.div` | ||
display: flex; | ||
align-items: center; | ||
flex-direction: column; | ||
position: absolute; | ||
right: 30px; | ||
border-radius: 10px; | ||
width: 90px; | ||
background-color: #ffffff; | ||
box-sizing: border-box; | ||
border: 1px solid #EFF0F6; | ||
box-shadow: 0 9px 26px 0 #170F490D; | ||
` | ||
|
||
export const NormalDiv = styled.div` | ||
display: flex; | ||
align-items: center; | ||
padding: 10px; | ||
color: #545F71; | ||
` | ||
|
||
export const RedDiv = styled(NormalDiv)` | ||
color: #A65959; | ||
` | ||
|
||
export const MenuText = styled.span` | ||
font-size: 15px; | ||
cursor: pointer; | ||
` |
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
Oops, something went wrong.