Cart icon is bugging / too long

Hello,

my cart icon is bugging around. Its clickable way too long (see screenshot).

Anyone knows how to fix this? Website: https://gojocat.store/products/gojo-cat-plush-toy

Thanks

@AnimeVoyage please add code in base.css
code worked only for mobile view

@media only screen and (max-width: 768px) {
#cart-icon-bubble svg {
    height: 44px !important;
}
}

Hi @AnimeVoyage ,

You can try this code by following these steps:

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file base.css

Step 3: Paste the below code at the bottom of the file → Save

@media (max-width: 768px){
a#cart-icon-bubble svg{
  height: fit-content !important;
}
}

Thanks!

This one work perfectly, thank you very much.

Anyone got a solution for PC, too?

Add this code to working PC and mobile.

a#cart-icon-bubble svg{
  height: fit-content !important;
}

Thanks!

@AnimeVoyage remove media query just add code

#cart-icon-bubble svg {
    height: 44px !important;
}