Skip to content

Commit

Permalink
Update WorkTile to allow more content, update MHD
Browse files Browse the repository at this point in the history
  • Loading branch information
adamplesnik committed Jan 22, 2025
1 parent 641bd60 commit 4ce04ca
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
4 changes: 2 additions & 2 deletions src/components/WorkTile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ const WorkTile = ({
{title}
</Heading>
)}
<div className="flex flex-col gap-4 md:flex-[2]">
<div className="flex flex-col gap-6 md:flex-[2]">
{text && <Paragraph>{text}</Paragraph>}
{more && (
<>
<div
className={clsx(
'overflow-hidden transition-[max-height] duration-500',
'flex flex-col gap-6 overflow-hidden transition-[max-height] duration-500',
moreVisible ? 'max-h-[1000px] ease-in' : 'max-h-0 ease-out'
)}
>
Expand Down
14 changes: 8 additions & 6 deletions src/content/mhd/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,14 @@ const SECOND_IMAGE = {

const More = () => {
return (
<Paragraph>
The original application is very complex and poorly designed. I simplified and polished the
user journey to make it more intuitive and less prone to errors. The new UI aims to be clear,
highly readable, and easy to use while in transit. This work is 100% guerilla, with a planned
pitch to the authorities.
</Paragraph>
<>
<Paragraph>
The original application is very complex and poorly designed. I simplified and polished the
user journey to make it more intuitive and less prone to errors. The new UI aims to be
clear, highly readable, and easy to use while in transit.
</Paragraph>
<Paragraph>This work is 100% guerilla, with a planned pitch to the authorities.</Paragraph>
</>
)
}

Expand Down

0 comments on commit 4ce04ca

Please sign in to comment.