Skip to content

Commit

Permalink
feat: fade everything in at once
Browse files Browse the repository at this point in the history
  • Loading branch information
cubedhuang committed Jul 21, 2022
1 parent 6ade47c commit b128b84
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/pages/skills.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default function Skills() {
Skills and technologies I use to build things.
</p>

<div className="grid grid-cols-3 xs:grid-cols-4 sm:grid-cols-5 gap-2 sm:gap-4 fade-in">
<div className="grid grid-cols-3 xs:grid-cols-4 sm:grid-cols-5 gap-2 sm:gap-4">
{skills.map(({ name, icon, href, bg }) => (
<a
key={icon}
Expand Down
3 changes: 2 additions & 1 deletion src/styles/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@

@for $i from 1 through 24 {
.fade-in > :nth-child(#{$i}) {
animation-delay: #{$i / 10}s;
// animation-delay: #{$i / 10}s;
animation-delay: 0.2s;
}
}

Expand Down

1 comment on commit b128b84

@vercel
Copy link

@vercel vercel bot commented on b128b84 Jul 21, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

danonl – ./

dannext.vercel.app
dan.onl
danonl-git-main-cubed.vercel.app
danonl-cubed.vercel.app
www.dan.onl

Please sign in to comment.