@HugoPadillaSubmitted almost 3 years ago
Hi all, Thank you for taking time to review my code!
If there is anything I can improve. I appreciate any comments, thank you
Hi all, Thank you for taking time to review my code!
If there is anything I can improve. I appreciate any comments, thank you
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;
}