diff --git a/astro/src/components/ThemedSection.astro b/astro/src/components/ThemedSection.astro index 2f3456cf..0cdc4ccf 100644 --- a/astro/src/components/ThemedSection.astro +++ b/astro/src/components/ThemedSection.astro @@ -4,7 +4,7 @@ interface Props { theme?: string; style?: string; text?: boolean; - py?: number; + yPaddings?: Array; fluid?: boolean; } @@ -13,17 +13,18 @@ const { theme = undefined, style = undefined, text = false, - py = 5, + yPaddings = ["xs-1", "sm-2", "md-3", "lg-4"], fluid = false, } = Astro.props; import { getBackgroundAndText } from "../lib/themes.ts"; const bgAndTextClass = getBackgroundAndText(theme, style, text); +const yPaddingClasses = yPaddings.map((p) => `py-${p}`); ---
-
+
diff --git a/astro/src/layouts/BlogLayout.astro b/astro/src/layouts/BlogLayout.astro index 5d2ed955..eedfc5ed 100644 --- a/astro/src/layouts/BlogLayout.astro +++ b/astro/src/layouts/BlogLayout.astro @@ -92,7 +92,7 @@ import ThemedSection from "@components/ThemedSection.astro"; Blog - +

diff --git a/astro/src/layouts/PolicyLayout.astro b/astro/src/layouts/PolicyLayout.astro index 901a87b9..4a13f379 100644 --- a/astro/src/layouts/PolicyLayout.astro +++ b/astro/src/layouts/PolicyLayout.astro @@ -22,7 +22,7 @@ const metadata: PageMetadata = { {title} - +
- + diff --git a/astro/src/pages/blog/authors/index.astro b/astro/src/pages/blog/authors/index.astro index 40ad86e6..75cb340e 100644 --- a/astro/src/pages/blog/authors/index.astro +++ b/astro/src/pages/blog/authors/index.astro @@ -23,7 +23,7 @@ import ThemedSection from "../../../components/ThemedSection.astro"; Blogs by author - +

    { diff --git a/astro/src/pages/blog/dates/index.astro b/astro/src/pages/blog/dates/index.astro index e633761f..055e9fda 100644 --- a/astro/src/pages/blog/dates/index.astro +++ b/astro/src/pages/blog/dates/index.astro @@ -24,7 +24,7 @@ import ThemedSection from "../../../components/ThemedSection.astro"; Blogs by date - +

      { diff --git a/astro/src/pages/blog/topics/index.astro b/astro/src/pages/blog/topics/index.astro index b7594ad2..333b65af 100644 --- a/astro/src/pages/blog/topics/index.astro +++ b/astro/src/pages/blog/topics/index.astro @@ -24,7 +24,7 @@ import ThemedSection from "../../../components/ThemedSection.astro"; Blogs by topic - +

        { diff --git a/astro/src/pages/escape-room/_csun-2025.astro b/astro/src/pages/escape-room/_csun-2025.astro index db4040e1..4c887333 100644 --- a/astro/src/pages/escape-room/_csun-2025.astro +++ b/astro/src/pages/escape-room/_csun-2025.astro @@ -61,7 +61,7 @@ const timeSlots = ["7:20", "7:50", "8:20", "8:50", "9:20"]; - +

        CSUN Escape Room Registration

        diff --git a/astro/src/pages/escape-room/index.astro b/astro/src/pages/escape-room/index.astro index 15700a88..33367ec1 100644 --- a/astro/src/pages/escape-room/index.astro +++ b/astro/src/pages/escape-room/index.astro @@ -27,7 +27,7 @@ import woodenPuzzles from "src/images/escape-room/wooden-puzzles.png"; --- - +
        diff --git a/astro/src/pages/podcasts/index.astro b/astro/src/pages/podcasts/index.astro index dcb06ec8..102b0aae 100644 --- a/astro/src/pages/podcasts/index.astro +++ b/astro/src/pages/podcasts/index.astro @@ -72,7 +72,7 @@ import ThemedBox from "@components/ThemedBox.astro"; { shows.map((show, index) => ( - + {index === 0 ?
        diff --git a/astro/src/pages/services/index.astro b/astro/src/pages/services/index.astro index 55d25afa..6d3c7e98 100644 --- a/astro/src/pages/services/index.astro +++ b/astro/src/pages/services/index.astro @@ -78,7 +78,7 @@ const metadata: PageMetadata = {
        - +
        { services.map(({ icon, name, title, text, link }) => (