mirror of
https://github.com/strapi/strapi.git
synced 2025-08-10 09:47:46 +00:00
10 lines
202 B
JavaScript
10 lines
202 B
JavaScript
import styled from 'styled-components';
|
|
import { HeaderSearch as Base } from 'strapi-helper-plugin';
|
|
|
|
const HeaderSearch = styled(Base)`
|
|
left: 32rem;
|
|
z-index: 1060;
|
|
`;
|
|
|
|
export default HeaderSearch;
|