diff --git a/app/ui/lib/CardBlock.tsx b/app/ui/lib/CardBlock.tsx
index 560898960a..500bb81a88 100644
--- a/app/ui/lib/CardBlock.tsx
+++ b/app/ui/lib/CardBlock.tsx
@@ -28,7 +28,7 @@ export function CardBlock({ children, width = 'full' }: CardBlockProps) {
return (
@@ -45,7 +45,7 @@ type HeaderProps = {
}
CardBlock.Header = ({ title, description, children, titleId }: HeaderProps) => (
-
+
{title}
@@ -58,9 +58,9 @@ CardBlock.Header = ({ title, description, children, titleId }: HeaderProps) => (
)
// If there's a table with a scrollbar we want to avoid it adding extra padding at the bottom
-CardBlock.Body = classed.div`px-5 pt-4 space-y-4 [&>*:last-child[data-simplebar]]:pb-3 [&>*:last-child[data-simplebar]]:-mb-3`
+CardBlock.Body = classed.div`px-5 py-4 space-y-4 [&>*:last-child[data-simplebar]]:pb-3 [&>*:last-child[data-simplebar]]:-mb-3`
-CardBlock.Footer = classed.footer`flex items-center justify-between border-t px-5 pt-4 text-secondary border-secondary`
+CardBlock.Footer = classed.footer`flex items-center justify-between px-5 pt-4 text-secondary`
export const LearnMore = ({ href, text }: { href: string; text: React.ReactNode }) => (