20 lines
255 B
SCSS
20 lines
255 B
SCSS
.search-component{
|
|
|
|
margin: 2em auto 2em auto;
|
|
width: 50%;
|
|
position: relative;
|
|
|
|
input[type=text]{
|
|
width: 100%;
|
|
border: none;
|
|
padding: 0.5em 1em;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.suggestion-area{
|
|
position: absolute;
|
|
right: 0;
|
|
left: 0;
|
|
}
|
|
}
|