HeaderStyled.tsx
499 Bytes
import styled from 'styled-components';
export const Container = styled.div `
width : 100%;
position : relative;
display : inline-block;
padding : 20px 0;
box-shadow: 0px 0px 10px #a0a0a0;
margin : 0 0 15px 0;
z-index : 50;
`;
export const HeaderWrapper = styled.div `
display : flex;
justify-content : center;
align-items : center;
`;
export const Title = styled.div `
flex : 1;
text-align : center;
font-size : 17px;
font-weight : 800;
`;