Skip to content

Commit

Permalink
Update Sponsors.jsx
Browse files Browse the repository at this point in the history
fixed hover colors
  • Loading branch information
UtkarshJaiswal1406 authored Oct 20, 2024
1 parent f15b1ce commit 82286d9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/Home/Sponsors.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,17 +31,17 @@ const Sponsors = () => {
<style jsx>{`
.border-gradient {
border: 3px solid transparent;
filter: drop-shadow(0 0 10px rgba(13, 255, 78, 0.4));
filter: drop-shadow(0 0 10px rgba(13, 255, 78, 0.2));
transition: filter 0.3s ease-in-out; /* Ensure smooth transition */
}
.border-gradient:hover {
filter: drop-shadow(0 0 20px rgba(13, 255, 78, 0.8)); /* Stronger glow on hover */
filter: drop-shadow(0 0 20px rgba(13, 255, 78, 1)); /* Stronger glow on hover */
transition: filter 0.3s ease-in-out; /* Smooth transition on hover */
}
`}</style>
</div>
);
}

export default Sponsors;
export default Sponsors;

0 comments on commit 82286d9

Please sign in to comment.