Issue
ion-modal has a default scrollbar that will appear if the content overflows. I want to style that scrollbar.
I am able to style scrollbars in the app with ::-webkit-scrollbar, ::-webkit-scrollbar-track and ::-webkit-scrollbar-thumb but it doesn't seem to work inside a modal. I've tried applying these elements to several components inside the modal like ion-content::-webkit-scrollbar but it doesn't work.
Solution
Below is the general approach you can take to style a scroll bar inside an ion-modal in Ionic 6.
- Wrap your ion-modal content inside
ion-content
tag like given below
<ion-content>
//modal content goes here
</ion-content>
Then in global css file add below css for scrollbar
ion-content { --offset-bottom: auto !important; --overflow: auto; background: var(--ion-toolbar-background, var(--ion-background-color, #000000)) !important; overflow: auto; &::-webkit-scrollbar { width: 5px; height: 5px; } &::-webkit-scrollbar-track { background: rgb(0, 0, 0); } &::-webkit-scrollbar-track:hover { background: #35d703; } &::-webkit-scrollbar-thumb { background: rgb(75, 75, 75); } &::-webkit-scrollbar-thumb:hover { background: #94173a } .inner-scroll { scrollbar-width: thin; } }
Your scroll will look like below in ion-modal
Answered By - Ravindra Pawar
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.