Skip to content

Commit

Permalink
Merge pull request #29 from ful1e5/dev
Browse files Browse the repository at this point in the history
chore: Adjust heroes' card color for improved logo visibility
  • Loading branch information
ful1e5 authored Mar 25, 2024
2 parents 4d4c6a9 + 7b4b02e commit 17fede6
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ jobs:
uses: actions/checkout@v4

- name: Setup Node.js and Yarn
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
registry-url: https://registry.yarnpkg.com

- name: Cache Yarn dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
node_modules
Expand All @@ -41,9 +41,9 @@ jobs:
- name: Yarn Lint
run: yarn lint

- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: 3.8
cache: 'pip'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy-db.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ jobs:
uses: actions/checkout@v4

- name: Setup Node.js and Yarn
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
registry-url: https://registry.yarnpkg.com

- name: Cache Yarn dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
node_modules
Expand Down
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 17fede6

Please sign in to comment.