Skip to content

Commit

Permalink
changes(app): Adjust heroes' card color for improved logo visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
ful1e5 committed Mar 25, 2024
1 parent c637f6a commit 7b4b02e
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changes

- Reusable `Marquee` Component
- Adjust heroes' card color for improved logo visibility

### Fixes

Expand Down
2 changes: 1 addition & 1 deletion src/components/HeroesElements/card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const HeroesCard: React.FC<Props> = (props) => {
{props.special && (
<div className='absolute blur-sm sm:blur-md scale-105 opacity-50 w-52 sm:w-72 h-5/6 translate-y-1 rounded-3xl bg-[linear-gradient(to_right,theme(colors.blue.600),theme(colors.orange.600),theme(colors.pink.600),theme(colors.blue.600))] bg-[length:200%_auto] animate-gradient' />
)}
<div className='w-52 sm:w-72 bg-black rounded-3xl overflow-hidden text-center drop-shadow-lg border border-white/[.1] '>
<div className='w-52 sm:w-72 bg-zinc-800 rounded-3xl overflow-hidden text-center drop-shadow-lg border border-white/[.1] '>
<img
alt={props.name}
className={`saturate-150 brightness-105 ${props.classes || ''} `}
Expand Down
1 change: 0 additions & 1 deletion src/components/HeroesElements/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ export const HeroesElements: React.FC<Props> = (_props) => {
link='https://github.com/github'
name='GitHub'
role='One-time Sponsor'
classes='p-5'
/>
<Card
imgUrl='https://avatars.githubusercontent.com/u/107184?v=4'
Expand Down

0 comments on commit 7b4b02e

Please sign in to comment.