Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
students
butter-studio
Commits
319db725
Commit
319db725
authored
Jul 05, 2021
by
Kim, Subin
Browse files
Search 불러오는 곳 구분 & css
parent
36b97dd4
Changes
3
Hide whitespace changes
Inline
Side-by-side
client/src/components/Navs/MainNav.js
View file @
319db725
...
@@ -6,7 +6,7 @@ const MainNav = () => {
...
@@ -6,7 +6,7 @@ const MainNav = () => {
<
a
class
=
"
nav-link text-white
"
href
=
"
#
"
>
영화
<
/a
>
<
a
class
=
"
nav-link text-white
"
href
=
"
#
"
>
영화
<
/a
>
<
a
class
=
"
nav-link text-white
"
href
=
"
#
"
>
빠른예매
<
/a
>
<
a
class
=
"
nav-link text-white
"
href
=
"
#
"
>
빠른예매
<
/a
>
<
a
class
=
"
nav-link text-white
"
href
=
"
#
"
>
극장
<
/a
>
<
a
class
=
"
nav-link text-white
"
href
=
"
#
"
>
극장
<
/a
>
<
Search
/>
<
Search
type
=
"
home
"
/>
<
/nav
>
<
/nav
>
)
)
}
}
...
...
client/src/components/Search/Search.js
View file @
319db725
import
styles
from
"
./search.module.scss
"
;
import
styles
from
"
./search.module.scss
"
;
const
Search
=
()
=>
{
const
Search
=
({
type
})
=>
{
console
.
log
(
"
type==
"
,
type
)
return
(
return
(
<
div
className
=
"
d-flex
"
>
<
div
className
=
"
d-flex
"
>
<
input
className
=
"
form-control
"
type
=
"
text
"
id
=
"
search
"
/>
<
input
className
=
"
form-control
"
type
=
"
text
"
id
=
{
type
===
"
home
"
?
styles
.
searchWhite
:
styles
.
search
}
/
>
<
i
className
=
"
bi bi-search align-self-center
text-white
"
style
=
{{
fontSize
:
"
1.3rem
"
}}
><
/i
>
<
i
className
=
{
`
bi bi-search align-self-center
${
type
===
"
home
"
?
"
text-white
"
:
"
mx-1
"
}
${
styles
.
icon
}
`
}
style
=
{{
fontSize
:
"
1.3rem
"
}}
><
/i
>
<
/div
>
<
/div
>
)
)
}
}
...
...
client/src/components/Search/search.module.scss
View file @
319db725
input
[
type
=
"text"
]
{
.icon
{
cursor
:
pointer
;
}
#searchWhite
{
background
:
transparent
;
background
:
transparent
;
border
:
none
;
border
:
none
;
border-bottom
:
2px
solid
#fff
;
border-bottom
:
2px
solid
#fff
;
...
@@ -7,16 +11,22 @@ input[type="text"] {
...
@@ -7,16 +11,22 @@ input[type="text"] {
border-radius
:
0
;
border-radius
:
0
;
color
:
#fff
;
color
:
#fff
;
margin-bottom
:
5px
;
margin-bottom
:
5px
;
}
input
[
type
=
"text"
]
:focus
{
&
:focus
{
background
:
transparent
;
background
:
transparent
;
-webkit-box-shadow
:
none
;
-webkit-box-shadow
:
none
;
box-shadow
:
none
;
box-shadow
:
none
;
border-color
:
#fff
;
border-color
:
#fff
;
color
:
#fff
;
color
:
#fff
;
}
}
}
i
{
#search
{
cursor
:
pointer
;
box-shadow
:
none
;
-webkit-box-shadow
:
none
;
&
:focus
{
-webkit-box-shadow
:
none
;
box-shadow
:
none
;
border-color
:
#000
;
}
}
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment