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

  • @namasSinjali

    Posted

    I'd like to point out one thing though: the card's height changes when the mouse pointer hovers over a button. It doesn't feel good and also causes performance issues as the whole card needs to rerender.

    Define the button's border with color transparent and make it visible on hover.

    .button {
        ...
        border: 2px solid transparent;
    }
    .button:hover {
        border-color: white;
    }
    
    2