Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

All comments

  • LynnArsa• 20

    @LynnArsa

    Submitted

    At first, I used basic CSS Styling because it's more convenient for small projects. But we decided to change to Tailwind CSS, hoping that we can learn more by doing it. I have trouble with styling the glowing hover button using Tailwind CSS, also I'm sure I still can make the JavaScript code simpler but still don't understand how to do it.

    Godstime01• 320

    @Godstime01

    Posted

    To add the glowing effect on the button, a box shadow on hover will do the trick.

    <button class="hover:shadow-md ..." />
    
    0