Home > database >  How can I remove this hideous hover effect on this button?
How can I remove this hideous hover effect on this button?

Time:04-05

So me and my friend are making a chrome extension. To get into detail, it’s for the enter image description here

How can I remove this? Any help is appreciated very much!

CodePudding user response:

Let me preface this by saying I am by no means experienced enough to give a true answer on this, but I don't have enough reputation to give a comment.

Could the white square somehow be the keyframe(s)? It seems shaped like the dimensions you gave and could be some CSS visual error that could be fixed with a line of code or two. For me, it seems likely that it's either a Roblox thing or most likely a CSS thing, but again, I barely can understand what's going on here and have little experience. It could be that that is something like a HTML/CSS class in the Roblox site and you could be accidentally doing something with that as well.

Take this with a grain of salt though.

CodePudding user response:

so basically, the answer this was just simply adding this to CSS:

.icon {
  --primary-low: transparent !important;
}
  • Related