1
0
Fork 0
blog/src/components/Search/SearchInput.module.scss

28 lines
428 B
SCSS
Raw Normal View History

2018-08-28 23:28:42 +02:00
@import 'variables';
2018-11-18 16:41:37 +01:00
.searchInput {
2019-10-02 13:35:50 +02:00
composes: input from '../atoms/Input.module.scss';
background: $input-bg-focus;
2018-11-18 16:41:37 +01:00
2019-10-02 13:35:50 +02:00
&::-webkit-search-cancel-button {
display: none;
}
2018-11-18 16:41:37 +01:00
2019-10-02 13:35:50 +02:00
&:hover {
background: $input-bg-focus;
}
2018-11-18 16:41:37 +01:00
}
2018-08-28 23:28:42 +02:00
.searchInputClose {
2019-10-02 13:35:50 +02:00
position: absolute;
right: $spacer / 2;
top: $spacer / 5;
font-size: $font-size-h3;
color: $brand-grey-light;
2018-11-18 16:41:37 +01:00
2019-10-02 13:35:50 +02:00
&:hover,
&:focus {
color: $link-color;
}
2018-08-28 23:28:42 +02:00
}