Toggle navigation
Toggle navigation
This project
Loading...
Sign in
2021-1-capstone-design1
/
GCL_Project1
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
이승윤
2021-05-08 13:50:07 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
70eb72c220b01f7eed3f2586c5bc0c12e5a90258
70eb72c2
1 parent
c51fd14a
style: css position 변경
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
37 additions
and
19 deletions
frontend/src/components/SearchOptionModal.js
frontend/src/components/SearchOptionModal.js
View file @
70eb72c
...
...
@@ -32,34 +32,34 @@ const ModalContent = styled.div`
`
;
const
SearchWrap
=
styled
.
div
`
position:
fixed
;
top:
5
0%;
right: 43
%;
position:
absolute
;
top:
8
0%;
left: 20
%;
`
;
const
CloseWrap
=
styled
.
div
`
position:
fixed
;
top:
5
0%;
right:
32
%;
position:
absolute
;
top:
8
0%;
right:
20
%;
`
;
const
StandardWrap
=
styled
.
div
`
position: absolute;
width: 50px;
position: fixed;
top: 18%;
right: 43%;
top: 15px;
left: 30%;
`
;
const
AdvancedWrap
=
styled
.
div
`
width: 50px;
position:
fixed
;
top:
27%
;
right: 43
%;
position:
absolute
;
top:
75px
;
left: 30
%;
`
;
const
TextWrap
=
styled
.
div
`
position:
fixed
;
width: 3
4
0px;
position:
absolute
;
width: 3
6
0px;
top:
${
props
=>
props
.
top
}
;
right:
${
props
=>
props
.
right
}
;
border-bottom: 2px solid #dee2e6;
...
...
@@ -81,21 +81,39 @@ const Modal = ({ showModal, setShowModal }) => {
<
Background
onClick
=
{
closeModal
}
>
<
ModalWrapper
>
<
ModalContent
>
<
TextWrap
top
=
"1
8.5%"
right
=
"28.5%
"
bottom
=
"19px"
>
<
TextWrap
top
=
"1
5px"
right
=
"20px
"
bottom
=
"19px"
>
기본검색
<
/TextWrap
>
<
StandardWrap
>
<
Input
float
=
"left"
color
=
"blue"
width
=
"140px"
size
=
"10px"
/>
<
/StandardWrap
>
<
TextWrap
top
=
"
27%"
right
=
"28.5%
"
bottom
=
"137px"
>
<
TextWrap
top
=
"
75px"
right
=
"20px
"
bottom
=
"137px"
>
고급검색
<
/TextWrap
>
<
AdvancedWrap
>
<
Input
float
=
"left"
color
=
"blue"
width
=
"140px"
size
=
"10px"
/>
<
Input
float
=
"left"
color
=
"blue"
width
=
"140px"
size
=
"10px"
placeholder
=
"단어/ 문장검색"
/
>
<
br
/>
<
br
/>
<
Input
float
=
"left"
color
=
"blue"
width
=
"140px"
size
=
"10px"
/>
<
Input
float
=
"left"
color
=
"blue"
width
=
"140px"
size
=
"10px"
placeholder
=
"최초 작성자"
/
>
<
br
/>
<
br
/>
<
Input
float
=
"left"
color
=
"blue"
width
=
"140px"
size
=
"10px"
/>
<
Input
float
=
"left"
color
=
"blue"
width
=
"140px"
size
=
"10px"
placeholder
=
"최종 수정자"
/
>
<
/AdvancedWrap
>
<
/ModalContent
>
<
CloseWrap
onClick
=
{()
=>
setShowModal
(
prev
=>
!
prev
)}
>
...
...
Please
register
or
login
to post a comment