UNPKG

babel-plugin-styled-components-px2vw

Version:
46 lines (38 loc) 538 B
const layout1 = styled.div` & { position: relative; } & { footer { height: 80px; background: green; } header { height: 45px; background: yellow; } } ` const layout2 = styled.div` & { position: relative; } & footer { height: 80px; background: green; } & header { height: 45px; background: yellow; } ` const layout3 = styled.div` & footer { height: 80px; background: green; } & header { height: 45px; background: yellow; } `