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(#201): LotusList 크기가 이상해지는 오류 #202

Merged
merged 1 commit into from
Dec 3, 2024
Merged
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
4 changes: 2 additions & 2 deletions apps/frontend/src/widget/lotusList/SuspenseLotusList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ export function SuspenseLotusList({ queryOptions }: { queryOptions: LotusLostQue
if (lotuses.length < 1) return <SuspenseLotusListEmpty />;

return (
<div className="w-full grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-8 place-items-center">
<div className="w-full grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-8">
{lotuses?.map(({ lotus, author }) => (
<Lotus lotus={lotus} key={lotus.id}>
<User user={author}>
<Lotus.Link>
<div className="w-full h-full lg:w-82 p-5 shadow-md bg-white rounded-xl hover:shadow-lg hover:shadow-neutral-400 transition-shadow duration-200">
<div className="w-full h-full w-82 p-5 shadow-md bg-white rounded-xl hover:shadow-lg hover:shadow-neutral-400 transition-shadow duration-200">
<div className="flex justify-between items-center">
<Lotus.Title className="text-[#1C1D22]" />

Expand Down
Loading