I need the drawer to act like a whole page, scrollable, instead of only the items section as scrollable part, so it looks good on both mobile and desktop.
I don’t want to change the size of the drawer, just make it act like a whole page.
How do I do that?
Link:
Hi, I’m William from PageUni here. You can add these CSS code to your store custom CSS to do the trick:
cart-drawer-items {
overflow: initial !important;
}
.drawer.active .drawer__inner {
overflow: auto !important;
}
DM me if you need more assistance
.
Excellent, thanks. Works as expected.
1 Like