Skip to content

Commit e62eec3

Browse files
committed
fix(components): add padding y
1 parent ad6879e commit e62eec3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

apps/www/src/app/(main)/_components/TechStack/TechStack.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { technologies } from '~/config/technologies';
22

33
export const TechStack = () => {
44
return (
5-
<article className='px-4'>
5+
<article className='px-4 py-8'>
66
<h4 className='px-4 font-serif text-lg text-grey-text'>Tech stack</h4>
77

88
{/* TODO: Create marquee ui component */}
@@ -20,7 +20,7 @@ export const TechStack = () => {
2020
.map((index) => (
2121
<div
2222
key={index}
23-
className='animate-logo-cloud duration-[1400] flex shrink-0 flex-row justify-around gap-6 group-hover:[animation-play-state:paused]'
23+
className='duration-[1400] flex shrink-0 animate-logo-cloud flex-row justify-around gap-6 group-hover:[animation-play-state:paused]'
2424
>
2525
{technologies.slice(0, 9).map(({ name, icon: Icon }) => (
2626
<Icon key={name} className='size-6' />
@@ -45,7 +45,7 @@ export const TechStack = () => {
4545
.map((index) => (
4646
<div
4747
key={index}
48-
className='animate-logo-cloud-reverse duration-[1200] flex shrink-0 flex-row justify-around gap-6 group-hover:[animation-play-state:paused]'
48+
className='duration-[1200] flex shrink-0 animate-logo-cloud-reverse flex-row justify-around gap-6 group-hover:[animation-play-state:paused]'
4949
>
5050
{technologies
5151
.slice(10, technologies.length)

0 commit comments

Comments
 (0)