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

14 lines
340 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;
2020-12-24 04:32:25 +00:00
height: ${(props) => props.theme.headerHeight};
2019-11-05 05:09:50 +00:00
padding: 0px 30px;
box-shadow: 0px 0px 3px #ccc;
background: #fff;
2020-12-24 04:32:25 +00:00
font-size: ${(props) => props.theme.fontSizes[1]}px;
2019-11-05 05:09:50 +00:00
`;