Soy un desarrollador con experiencia en tecnologías front-end y back-end, especializado en ReactJS, HTML5, CSS y JavaScript. He trabajado en roles de coordinación y atención al cliente, lo cual me ha permitido desarrollar mis habilidades en solución de problemas, gestión de equipos y comunicación ef
Latest solutions
Responsive form, using React, Vite & React-Router
#accessibility#jquery#react#react-routerSubmitted over 1 year ago
Latest comments
- @ronesanttos@Locoyoccim
Hi Rone; You could enhance your button hover effect by using the transition property in CSS. For example:
.link { width: 80%; padding: 15px; margin: 10px; border-radius: 8px; font-weight: bold; color: white; border: none; text-decoration: none; text-align: center; background-color: hsl(0, 0%, 20%); transition: 0.3s all ease; }
.link:hover { background-color: hsl(75, 94%, 57%); color: hsl(0, 0%, 8%); transition: 0.3s all ease; }
This is a small excerpt from your code where I just added the transition property!
Let me know if you need anything else! Have a nice code!
Marked as helpful - @Locoyoccim@Locoyoccim
"I have fixed some bugs and also corrected the dimensions of the cards."