| 1 2 3 4 5 6 7 8 9 10 | import style from 'styled-components' const Container = style.div` padding: ${props => props.full ? '0' : '30px 20px'}; max-height: calc(100vh - 200px); overflow-y: ${props => props.overflowY ? 'auto' : 'unset'}; ` export default Container |