모바일화면에서 height이 짤리는문제

Aiden·2022년 4월 7일
0
 const setVh = () => {
    document.documentElement.style.setProperty(
      '--vh',
      `${window.innerHeight}px`,
    )
  }
  window.addEventListener('resize', setVh)
  setVh()
  
  const TutorialImg = styled.img`
  border-radius: ${isMobile ? 0 : '31.4px'};
  height: ${isMobile ? 'var(--vh)' : '-webkit-fill-available'};
`

0개의 댓글