Skip to content

Commit

Permalink
fix: mobile add card imp
Browse files Browse the repository at this point in the history
  • Loading branch information
Karlen9 committed Aug 7, 2024
1 parent ac28f3c commit 48ab68b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/common/components/AppCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export function AppCard(props: TAppCardProps): ReactElement {

<div className={'ml-4'}>
<div className={'mb-1 text-base font-bold text-gray-300'}>{props.app.name}</div>
<p className={'text-base text-gray-400'}>{props.app.description}</p>
<p className={'line-clamp-2 h-12 text-base text-gray-400'}>{props.app.description}</p>
</div>
</Link>
</>
Expand Down
4 changes: 2 additions & 2 deletions pages/home/[category].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ export default function Index(props: {router: NextRouter}): ReactElement {
}, [props.router.asPath]);

return (
<div className={'mt-24 flex w-full justify-start px-4 !pl-8 md:mt-10'}>
<div className={'mt-24 flex w-full justify-start px-4 !pl-8 pb-14 md:mt-10'}>
<div className={'flex w-full max-w-4xl flex-col'}>
<div className={'mb-10 flex w-full flex-col justify-start'}>
<p className={'text-3xl font-bold leading-[64px] text-white md:text-[64px]'}>
<p className={'text-3xl font-bold text-white md:text-[64px] md:leading-[64px]'}>
{currentCatrgory?.categoryName}
</p>

Expand Down

0 comments on commit 48ab68b

Please sign in to comment.