PromucFlow_constructor/app/client/src/components/designSystems/appsmith/StyledHeader.tsx
albinAppsmith 31cdfe0fe5
feat: Appsmith design system changes (#8125)
Introducing a much improved design system with new components in the Appsmith Design System.
2021-10-04 21:04:37 +05:30

15 lines
362 B
TypeScript

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