diff --git a/web/default/src/components/layout/components/footer.tsx b/web/default/src/components/layout/components/footer.tsx index 108187fe4..59308209d 100644 --- a/web/default/src/components/layout/components/footer.tsx +++ b/web/default/src/components/layout/components/footer.tsx @@ -58,7 +58,7 @@ function FooterLinkItem(props: { link: FooterLink }) { href={props.link.href} target='_blank' rel='noopener noreferrer' - className='text-[#8B8D97] hover:text-[#00D2FF] text-sm transition-colors duration-200' + className='text-muted-foreground hover:text-primary text-sm transition-colors duration-200' > {label} @@ -68,16 +68,13 @@ function FooterLinkItem(props: { link: FooterLink }) { return ( {label} ) } -// Renders User Agreement / Privacy Policy links inline with the parent's -// copyright row when either is configured in System Settings → Site. Emits -// fragmented siblings so the parent flex container's gap controls spacing. function LegalLinks(props: { leadingSeparator?: boolean }) { const { t } = useTranslation() const { status } = useStatus() @@ -104,13 +101,13 @@ function LegalLinks(props: { leadingSeparator?: boolean }) { {items.map((item, index) => ( {(props.leadingSeparator || index > 0) && ( -