How can I remove grey background from links on drawer menu (dawn theme)

How do I remove it so that the grey background isn’t there when the link is selected? I’ve removed the grey background upon hovering but it reappears once you click on the link.

Hey @PM98 ,

Add this to your CSS,

.menu-drawer__menu-item--active {
    background-color: transparent !important;
}