File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
apps/www/src/app/(main)/_components/TechStack Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import { technologies } from '~/config/technologies';
2
2
3
3
export const TechStack = ( ) => {
4
4
return (
5
- < article className = 'px-4' >
5
+ < article className = 'px-4 py-8 ' >
6
6
< h4 className = 'px-4 font-serif text-lg text-grey-text' > Tech stack</ h4 >
7
7
8
8
{ /* TODO: Create marquee ui component */ }
@@ -20,7 +20,7 @@ export const TechStack = () => {
20
20
. map ( ( index ) => (
21
21
< div
22
22
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]'
24
24
>
25
25
{ technologies . slice ( 0 , 9 ) . map ( ( { name, icon : Icon } ) => (
26
26
< Icon key = { name } className = 'size-6' />
@@ -45,7 +45,7 @@ export const TechStack = () => {
45
45
. map ( ( index ) => (
46
46
< div
47
47
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]'
49
49
>
50
50
{ technologies
51
51
. slice ( 10 , technologies . length )
You can’t perform that action at this time.
0 commit comments