Skip to content

Commit 90f8f5e

Browse files
committed
Clean up work page on mobile
1 parent 0486564 commit 90f8f5e

File tree

1 file changed

+8
-16
lines changed

1 file changed

+8
-16
lines changed

src/ui/work-table.tsx

+8-16
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,10 @@ const works = [
6868
'We built a platform to make an AI-directed video out of your GitHub activity. It was used by thousands of devs, which caused it to crash, so we parallelized the rendering engine and dynamically down-rezzed on mobile to scale.',
6969
backgroundImageUrl: '/images/graphite.png',
7070
image: (
71-
<div className="flex w-full flex-col gap-2">
71+
<div className="flex h-full w-full flex-col justify-center gap-2">
7272
<div className="mr-auto rounded-custom bg-background px-2 py-1">enter your github username</div>
7373
<div className="ml-auto rounded-custom bg-background px-2 py-1">@carmenlala</div>
74-
<div className="flex flex-col gap-4 rounded-custom bg-background p-4">
74+
<div className="flex w-full flex-col gap-4 rounded-custom bg-background p-4">
7575
<div className="grid w-full grid-flow-col grid-rows-7 gap-1 overflow-hidden">
7676
{Array.from({ length: 7 * 52 }).map((_, index) => (
7777
<div
@@ -133,7 +133,7 @@ const works = [
133133
name: 'Cal.com',
134134
description: 'We built an early version of Cal.ai, one of the first AI agents to go to market.',
135135
image: (
136-
<div className="flex w-full flex-col gap-2 text-left">
136+
<div className="flex h-full w-full flex-col gap-2">
137137
<div className="mr-auto flex flex-col rounded-custom bg-background p-4">
138138
<p>from: [email protected]</p>
139139
<p className="opacity-70">to: Cal.ai</p>
@@ -220,15 +220,15 @@ export const WorkTable = () => {
220220
<div
221221
key={index}
222222
id={`work-${work.name}`}
223-
className={`group h-fit w-full space-y-4 rounded-custom border p-4 px-6 text-secondary transition-colors duration-500 ${
223+
className={`group h-fit w-full space-y-4 rounded-custom border text-secondary transition-colors duration-500 sm:p-4 sm:px-6 ${
224224
highlightedWork === work.name ? 'border-primary' : 'border-primary/0'
225225
}`}
226226
>
227227
<div className="flex justify-between">
228228
<h3 className="text-primary">{work.name}</h3>
229229
<div>{work.date}</div>
230230
</div>
231-
<div className="grid gap-6 md:grid-cols-2">
231+
<div className="grid grid-cols-1 gap-6 md:grid-cols-2">
232232
<div className="flex w-full flex-col gap-4">
233233
{work.quote ? (
234234
<div className="text-5xl text-primary leading-12 tracking-tight">{work.quote}</div>
@@ -248,21 +248,13 @@ export const WorkTable = () => {
248248
) : null}
249249
</div>
250250
</div>
251-
<div
252-
className={cn('relative h-fit w-full space-y-4 text-right', {
253-
'aspect-square': work.image
254-
})}
255-
>
256-
{work.image ? (
257-
<div className="absolute top-0 left-0 z-10 flex h-full w-full items-center justify-center p-4">
258-
{work.image}
259-
</div>
260-
) : null}
251+
<div className="relative flex h-full w-full flex-col items-center justify-center">
252+
{work.image ? <div className="z-10 h-full w-full shrink-0 p-4">{work.image}</div> : null}
261253
{work.backgroundImageUrl ? (
262254
<CustomImage
263255
src={work.backgroundImageUrl}
264256
alt={work.name}
265-
className="absolute top-0 h-full w-full object-cover saturate-[1.25] dark:saturate-[0.75]"
257+
className="absolute top-0 left-0 w-full object-cover saturate-[1.25] dark:saturate-[0.75]"
266258
/>
267259
) : null}
268260
</div>

0 commit comments

Comments
 (0)