diff --git a/src/apps/pages/sections/ColumnContent.astro b/src/apps/pages/sections/ColumnContent.astro
index d662f71..fa17ab1 100644
--- a/src/apps/pages/sections/ColumnContent.astro
+++ b/src/apps/pages/sections/ColumnContent.astro
@@ -20,7 +20,7 @@ const BlockTypes = {
)}
{ item.__typename.endsWith(BlockTypes.text) && (
-
+
)}
diff --git a/src/apps/pages/sections/MultiColumn.astro b/src/apps/pages/sections/MultiColumn.astro
index b338b84..5143844 100644
--- a/src/apps/pages/sections/MultiColumn.astro
+++ b/src/apps/pages/sections/MultiColumn.astro
@@ -3,6 +3,7 @@ import clsx from 'clsx';
import _ from 'underscore';
import LinkButton from '@components/LinkButton';
import Column from '@apps/pages/sections/Column.astro';
+import { toBorderClass } from '@utils/pageBuilder';
const {
buttonText,
@@ -34,7 +35,7 @@ const gridCols = total === TOTAL_COLUMNS ? 'lg:grid-cols-12' : 'lg:auto-cols-fr
{ title && (
@@ -51,7 +52,12 @@ const gridCols = total === TOTAL_COLUMNS ? 'lg:grid-cols-12' : 'lg:auto-cols-fr
>
{
_.map(content, (col: any) => (
-
+
))
}
diff --git a/src/components/Card.astro b/src/components/Card.astro
index 3b7ac63..e0836fa 100644
--- a/src/components/Card.astro
+++ b/src/components/Card.astro
@@ -1,11 +1,18 @@
---
-const { alt, date, dateOptions = {}, category, title, author, slug, imageUrl, blurb, t } = Astro.props;
+import clsx from "clsx";
+import { toBorderClass } from "@utils/pageBuilder";
+
+const { alt, border, date, dateOptions = {}, category, title, author, slug, imageUrl, blurb, t, rounded } = Astro.props;
const dateString = date ? new Date(date).toLocaleDateString(undefined, dateOptions) : null;
---