Skip to content

Commit e78e4df

Browse files
authored
Update Technologies.tsx
1 parent d4795aa commit e78e4df

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/app/components/Technologies.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,13 @@ export default function Technologies() {
4343
</div>
4444
) : (
4545
<>
46-
<div className="w-full grid grid-cols-7 gap-2">
46+
<div className="w-full grid grid-cols-6 sm:grid-cols-7 md:grid-cols-9 lg:grid-cols-7 gap-2">
4747
{allTechnologies.map((technology, index) => {
4848
return (
4949
<TechnologyItem
5050
key={index}
5151
technology={technology}
52+
className={index === 27 ? 'md:hidden lg:flex' : ''}
5253
/>
5354
);
5455
})}

0 commit comments

Comments
 (0)