cyntler / hamburger-react

Animated hamburger menu icons for React.js weighs only 1.5 KB.
https://hamburger-react.netlify.app
MIT License
963 stars 36 forks source link

How can I adjust the visibility? #56

Closed kaganege closed 2 years ago

kaganege commented 2 years ago

Hello first of all.

I've used this and this

.hamburger {
  visibility: hidden;
}

and

.hamburger {
  display: none;
}

to toggle visibility but none of these worked.

Is there any other way to do this?

Thanks in advance for your help!

tesla-ambassador commented 2 years ago

Hey @TavukDoner7528! You can just place the hamburger within a div and apply the visibility/display styles on the div.

kaganege commented 2 years ago

Hey @TavukDoner7528! You can just place the hamburger within a div and apply the visibility/display styles on the div.

Oh. I don't know how I didn't think of this. Thank you!