PromucFlow_constructor/app/client/src/components/designSystems/appsmith/StyledHeader.tsx

14 lines
336 B
TypeScript
Raw Normal View History

2019-11-05 05:09:50 +00:00
import styled from "styled-components";
export default styled.header`
display: flex;
width: 100%;
2019-11-05 05:09:50 +00:00
justify-content: space-around;
align-items: center;
height: ${props => props.theme.headerHeight};
padding: 0px 30px;
box-shadow: 0px 0px 3px #ccc;
background: #fff;
font-size: ${props => props.theme.fontSizes[1]}px;
`;