Search code examples
javascriptcssreactjsstyled-components

CSS' calc() in styled-components


Trying this:

const styledDiv = styled.div`
  ${props => props.takeViewportHeight && `min-height: calc(100vh-16px);`}
`

It's not working. Am I missing something about calc in styled components?


Solution

  • A funny tip about CSS calc:

    whitespaces are required between +/-

    meaning:

    const styledDiv = styled.div`
      ${props => props.takeViewportHeight && `min-height: calc(100vh - 16px);`}
    `
    

    should work