diff --git a/src/components/config-pages/local-footer.tsx b/src/components/config-pages/local-footer.tsx index e67a6f0f..ca6d8477 100644 --- a/src/components/config-pages/local-footer.tsx +++ b/src/components/config-pages/local-footer.tsx @@ -219,7 +219,7 @@ const FooterLockup = ({useDefault = true, siteName, lockupOption, ...props}: Foo return (
-
+
{siteName || "University"}
diff --git a/src/components/elements/lockup/lockup-a.tsx b/src/components/elements/lockup/lockup-a.tsx index 712e7643..0a5a90e4 100644 --- a/src/components/elements/lockup/lockup-a.tsx +++ b/src/components/elements/lockup/lockup-a.tsx @@ -7,7 +7,7 @@ const LockupA = ({line1, line5, siteName, logoUrl}: FooterLockupProps) => {
-
+
{line1 || siteName}
diff --git a/src/components/global/page-footer.tsx b/src/components/global/page-footer.tsx index c41f6e3a..6500afd0 100644 --- a/src/components/global/page-footer.tsx +++ b/src/components/global/page-footer.tsx @@ -13,9 +13,10 @@ const PageFooter = ({...props}: Props) => {
diff --git a/src/components/global/page-header.tsx b/src/components/global/page-header.tsx index 5331af63..d770f626 100644 --- a/src/components/global/page-header.tsx +++ b/src/components/global/page-header.tsx @@ -21,7 +21,7 @@ const PageHeader = async () => {
Stanford University diff --git a/src/components/paragraphs/sum-testimonial-banner/sum-testimonial-banner-paragraph.tsx b/src/components/paragraphs/sum-testimonial-banner/sum-testimonial-banner-paragraph.tsx index a41f8ea0..3c062562 100644 --- a/src/components/paragraphs/sum-testimonial-banner/sum-testimonial-banner-paragraph.tsx +++ b/src/components/paragraphs/sum-testimonial-banner/sum-testimonial-banner-paragraph.tsx @@ -90,8 +90,10 @@ const SumTestimonialBannerParagraph = ({paragraph, ...props}: Props) => { className={twMerge( "absolute flex h-fit w-full justify-center lg:h-full lg:w-fit lg:items-center", clsx({ - "bottom-[30px] right-0 sm:bottom-[50px] lg:-left-[125px] lg:bottom-0 lg:top-0": leftText, - "right-0 top-[30px] sm:top-[50px] lg:-right-[125px] lg:bottom-0 lg:top-0": !leftText, + "bottom-[30px] right-0 sm:bottom-[50px] lg:-left-[125px] lg:bottom-0 lg:top-0 xl:-left-[150px] 2xl:-left-[200px]": + leftText, + "right-0 top-[30px] sm:top-[50px] lg:-right-[125px] lg:bottom-0 lg:top-0 xl:-right-[150px] 2xl:-right-[200px]": + !leftText, }) )} > diff --git a/tailwind.config.js b/tailwind.config.js index 50da222e..9c081de2 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -50,6 +50,7 @@ module.exports = { }, fontFamily: { roboto: ['var(--font-roboto)', 'sans-serif'], + stanford: ['var(--font-stanford)', 'sans-serif'], }, }, },