Skip to content

Commit

Permalink
p-6 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
kluvin committed Jan 21, 2025
1 parent 0a97621 commit 1cdc5d8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/components/ui/card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const CardHeader = React.forwardRef<
>(({ className, ...props }, ref) => (
<div
ref={ref}
className={cn("flex flex-col space-y-1.5 p-4", className)}
className={cn("flex flex-col space-y-1.5 p-6", className)}
{...props}
/>
))
Expand Down Expand Up @@ -57,7 +57,7 @@ const CardContent = React.forwardRef<
HTMLDivElement,
React.HTMLAttributes<HTMLDivElement>
>(({ className, ...props }, ref) => (
<div ref={ref} className={cn("p-4 pt-0", className)} {...props} />
<div ref={ref} className={cn("p-6 pt-0", className)} {...props} />
))
CardContent.displayName = "CardContent"

Expand All @@ -67,7 +67,7 @@ const CardFooter = React.forwardRef<
>(({ className, ...props }, ref) => (
<div
ref={ref}
className={cn("flex items-center p-4 pt-0", className)}
className={cn("flex items-center p-6 pt-0", className)}
{...props}
/>
))
Expand Down
2 changes: 1 addition & 1 deletion src/layouts/Layout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const headerContent = `
<slot />
</main>

<footer class="w-full p-4 text-center place-content-center flex flex-wrap space-x-4">
<footer class="w-full p-6 text-center place-content-center flex flex-wrap space-x-4">
<span>Med 💛 fra E-tjenesten og Jubileumskomiteen</span>
<span class="invisible sm:visible">|</span>
<span><a
Expand Down

0 comments on commit 1cdc5d8

Please sign in to comment.