diff --git a/src/component/AllFrameCpn/FrameList.module.css b/src/component/AllFrameCpn/FrameList.module.css index 59052af..a4917c2 100644 --- a/src/component/AllFrameCpn/FrameList.module.css +++ b/src/component/AllFrameCpn/FrameList.module.css @@ -39,6 +39,8 @@ ul { } .FrameUl { + height: 100%; + overflow-y: scroll; display: flex; flex-direction: row; justify-content: center; @@ -46,6 +48,10 @@ ul { flex-wrap: wrap; /* 너비를 넘어가면 다음 줄로 넘어감 */ } +.FrameUl::-webkit-scrollbar { + display: none; +} + .FrameItem { width: calc(40% - 10px); gap: 10px; diff --git a/src/component/MakeFrameCpn/Sticker.module.css b/src/component/MakeFrameCpn/Sticker.module.css index 583f069..b0067e2 100644 --- a/src/component/MakeFrameCpn/Sticker.module.css +++ b/src/component/MakeFrameCpn/Sticker.module.css @@ -21,8 +21,9 @@ .ListView { display: flex; - overflow-x: auto; - height: 160px; + overflow-x: scroll; + -webkit-overflow-scrolling: touch; + height: 80px; padding: 15px 0px 15px 18px; flex-direction: row; gap: 18px;