37 lines
837 B
SCSS
37 lines
837 B
SCSS
|
|
.searchInput_main{
|
|
display: flex;
|
|
align-items: center;
|
|
min-height: 62px;
|
|
border-bottom: 1px solid #F0F0F0;
|
|
.searchInput_title {
|
|
min-width: 145px;
|
|
min-height: 50px;
|
|
font-size: 28px;
|
|
color: $color_font_two;
|
|
margin-right: 20px;
|
|
padding-left: 20px;
|
|
display: flex;
|
|
align-items: center;
|
|
position: relative;
|
|
&::before{
|
|
content: "";
|
|
height: 30px;
|
|
width: 1px;
|
|
background-color: #F0F0F0;
|
|
position: absolute;
|
|
right: 0;
|
|
}
|
|
}
|
|
.searchInput_con{
|
|
flex:1;
|
|
width: 100%;
|
|
input{
|
|
font-size: 26px;
|
|
}
|
|
}
|
|
.icon_more_self{
|
|
font-size: 28px;
|
|
color: $color_font_two;
|
|
}
|
|
} |