Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
jenbreese committed Apr 10, 2024
1 parent 9041003 commit 59c4b90
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
9 changes: 4 additions & 5 deletions src/components/config-pages/local-footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const LocalFooter = ({

{/* Action Links */}
{suLocalFootAction &&
<ul className="list-unstyled">
<ul className="list-unstyled rs-pt-4">
{suLocalFootAction.map((link, index) => {
if (!link.url) return;
return (
Expand All @@ -85,7 +85,7 @@ const LocalFooter = ({
<Wysiwyg html={suLocalFootTr2Co?.processed} className="max-w-[250px]"/>
{/* Primary Links */}
{suLocalFootPrimeH &&
<H2 className="text-m1">{suLocalFootPrimeH}</H2>}
<H2 className="text-m1 text-white rs-pt-4">{suLocalFootPrimeH}</H2>}
{suLocalFootPrimary &&
<ul className="list-unstyled">
{suLocalFootPrimary.map((link, index) => {
Expand All @@ -107,7 +107,7 @@ const LocalFooter = ({
<Wysiwyg html={suLocalFootSeCo?.processed} className="max-w-[250px]"/>
{/* Secondary links */}
{suLocalFootSecondH &&
<H2 className="text-m1">{suLocalFootSecondH}</H2>}
<H2 className="text-m1 text-white rs-pt-4">{suLocalFootSecondH}</H2>}

{suLocalFootSecond &&
<ul className="list-unstyled">
Expand Down Expand Up @@ -149,12 +149,11 @@ const SocialIcon = ({url}: { url: string }) => {

export interface FooterLockupProps {
useDefault?: Maybe<boolean>
siteName?: Maybe<string>
lockupOption?: Maybe<string>
logoUrl?: Maybe<string>
}

const FooterLockup = ({useDefault = true, siteName, lockupOption, ...props}: FooterLockupProps): JSX.Element => {
const FooterLockup = ({useDefault = true, lockupOption, ...props}: FooterLockupProps): JSX.Element => {
const lockupProps = {
...props
}
Expand Down
5 changes: 3 additions & 2 deletions src/components/elements/lockup/lockup-logo.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import {Maybe} from "@lib/gql/__generated__/drupal.d";
import PressFooterLogoLg from "@components/images/logo-lg";
import PressFooterLogoXs from "@components/images/logo-xs";
// import PressFooterLogoXs from "@components/images/logo-xs";

const LockupLogo = ({logoUrl, siteName = ""}: { logoUrl?: Maybe<string>, siteName?: Maybe<string> }) => {

return (
<>
{logoUrl &&
Expand All @@ -15,7 +16,7 @@ const LockupLogo = ({logoUrl, siteName = ""}: { logoUrl?: Maybe<string>, siteNam
</picture>
}
{!logoUrl &&
<PressFooterLogoLg className="block no-underline max-h-[30px] w-auto"/>
<PressFooterLogoLg className="block"/>
}
</>
)
Expand Down

0 comments on commit 59c4b90

Please sign in to comment.