babel-plugin-styled-components-px2vw
Version:
Babel plugin for convert px to vw units of styled-components
46 lines (38 loc) • 538 B
Plain Text
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;
}
`