jonasschmedtmann / ultimate-react-course

Starter files, final projects, and FAQ for my Ultimate React course
3.25k stars 1.99k forks source link

usepopcorn css problem #75

Closed Amarnath1904 closed 4 months ago

Amarnath1904 commented 4 months ago

I am seeing scrollbars on the usepopcorn project

image

Amarnath1904 commented 4 months ago

solved it by


.box {
/*css*/

  overflow: auto;
}

and

.list{
/*css*/

  overflow: auto;
}