25 lines
423 B
SCSS
25 lines
423 B
SCSS
@import '../../stylesheets/_variables.scss';
|
|
|
|
.woocommerce-marketplace__search {
|
|
grid-area: mktpl-search;
|
|
background: $gray-0;
|
|
border-radius: 2px;
|
|
display: flex;
|
|
height: 40px;
|
|
padding: 4px 8px 4px 12px;
|
|
|
|
input[type='search'] {
|
|
all: unset;
|
|
flex-grow: 1;
|
|
}
|
|
|
|
@media (width <= $breakpoint-medium) {
|
|
margin: $content-spacing-small;
|
|
}
|
|
}
|
|
|
|
.woocommerce-marketplace__search-button {
|
|
all: unset;
|
|
cursor: pointer;
|
|
}
|