Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: vertical alignment in cards #95

Merged
merged 2 commits into from
Apr 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/webapp/components/routes/home/auction-card.tsx
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I recommend to push the action button wrapper to the bottom by giving the mt-auto. On smaller screens we might get the same issue.

Also continue adding a number to this file to make the build happen after merge -> https://github.com/bitcashorg/smartsale/blob/develop/packages/smartsale-db/src/client.ts#L5

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

image
I think we already have it there. @AndlerRL Could you please check it out again?

Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export function AuctionCard(props: Project) {
<Link
id={`hot-auction-${title.toLowerCase().replace(/\s/g, '-')}`}
href={isFutureOrComingAuction ? `#` : linkPath}
className={cn('mx-auto size-full max-w-[450px]', {
className={cn('mx-auto size-full flex flex-col', {
'cursor-not-allowed': isFutureOrComingAuction
})}
>
Expand Down
2 changes: 2 additions & 0 deletions packages/smartsale-db/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
export * from "./client";
export * from "../prisma/client";

// 2034
Loading