react 슬라이드 에러 채택완료

넷플릭스 클론 코딩중인데 슬라이드가 나타날때 밑에서 나타나는 오류가 생깁니다 ..ㅜㅜ 해결 하기가 상당히 힘드네요ㅜ

 

https://github.com/beom-jun-kim/beeflix

 

깃헙 주소입니다

 

슬라이더는 commonSlider.tsx에 있습니다

답변 1개

채택된 답변
+20 포인트

Copy
// height: 250px;

// = Box's height + SliderBtn's height + SliderConent's padding-bottom

// =          200 +                 35 +                            15

const Slider = styled.div`

  height: 250px;

 

  position: relative;

  margin-bottom: 80px;

`;

 

const Row = styled(motion.div)`

  position: absolute;

  width: 100%;

 

  display: grid;

  gap: 10px;

  grid-template-columns: repeat(6, 1fr);

`;
로그인 후 평가할 수 있습니다

답변에 대한 댓글 1개

와 css 문제라고는 생각했는데 감사합니다 :)

댓글을 작성하려면 로그인이 필요합니다.

답변을 작성하려면 로그인이 필요합니다.

로그인
🐛 버그신고