How can I make my cart dropdown non-transparent on Dawn theme?

So when i add something to my cart, the cart is transparent, how do i change the background to white with code?

Theme: Dawn

Website: desire-online.net

Hello @jakegrieveson ,

Follow these steps:

  1. Go to Online Store → Theme → Edit code

  2. Open your component-cart-notification.css.css file and paste the following code below:

#cart-notification {
    background-color: #fff;
}

Thanks