! Bazinga
! Bazinga
KPCKevin Powell - Community
Created by ! Bazinga on 7/21/2024 in #front-end
Drag and Drop API flickering issue
I've also added a video showing the flicker issue but it is hiding the explorer, sorry for that.
2 replies
KPCKevin Powell - Community
Created by ! Bazinga on 4/26/2024 in #front-end
Need help with setting "slide-out" animation to a slide-in form.
visibility: hidden is not working, as it works similar to display: none in this case.
7 replies
KPCKevin Powell - Community
Created by ! Bazinga on 4/28/2023 in #front-end
Ionicons not working with "classname" in Reactjs.
Oh wow, thanks! I didn't know they have different site for react icons. https://react-ionicons.netlify.app/
5 replies
KPCKevin Powell - Community
Created by ! Bazinga on 4/28/2023 in #front-end
Ionicons not working with "classname" in Reactjs.
For eg:
export default function Navbar() {
return (
<div class="navbar">
<ion-icon class="navbar__img" name="earth-outline"></ion-icon>
<h1>My Travel Journal</h1>
</div>
);
}
export default function Navbar() {
return (
<div class="navbar">
<ion-icon class="navbar__img" name="earth-outline"></ion-icon>
<h1>My Travel Journal</h1>
</div>
);
}
Here If I use give class name using "className" I'm unable to style the component as it doesn't recognises a class with "navbar".
5 replies