CSS' calc() in styled-components

Viewed 17097

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?

1 Answers

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

Related