Skip to content

Commit

Permalink
added-promptcard-padding (#3095)
Browse files Browse the repository at this point in the history
  • Loading branch information
theVedanta authored Jan 9, 2025
1 parent f28b843 commit 7fa1ee6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/components/templates/prompts/promptsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ const PromptsPage = (props: PromptsPageProps) => {

{filteredPrompts && (hasLimitedAccess || hasAccess) ? (
searchParams.get("view") === "card" ? (
<ul className="w-full h-full grid grid-cols-2 xl:grid-cols-4 gap-4">
<ul className={cn("w-full h-full grid grid-cols-2 xl:grid-cols-4 gap-4", ISLAND_MARGIN)}>
{filteredPrompts.map((prompt, i) => (
<li key={i} className="col-span-1">
<PromptCard prompt={prompt} />
Expand Down

0 comments on commit 7fa1ee6

Please sign in to comment.