Skip to content

Commit

Permalink
fix: Footer layout (#171)
Browse files Browse the repository at this point in the history
  • Loading branch information
evadecker authored Dec 12, 2024
1 parent 3446380 commit 968e79a
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/components/Footer.astro
Original file line number Diff line number Diff line change
Expand Up @@ -23,22 +23,22 @@ const linkGroups: LinkGroup[] = [
links: [
{ href: "/blog", label: "Blog" },
{ href: "/press", label: "Press" },
{ href: "/brand-assets", label: "Brand Assets" },
{ href: "/brand-assets", label: "Brand" },
],
},
{
title: "Resources",
title: "Legal",
links: [
{ href: "/chat", label: "Chat" },
{ href: "/status", label: "System Status" },
{ href: "/terms", label: "Terms" },
{ href: "/privacy", label: "Privacy" },
{ href: "/abuse", label: "Abuse" },
],
},
{
title: "Legal",
title: "Resources",
links: [
{ href: "/terms", label: "Terms of Service" },
{ href: "/privacy", label: "Privacy Policy" },
{ href: "/abuse", label: "Restricted Use" },
{ href: "/chat", label: "Chat" },
{ href: "/status", label: "Status" },
],
},
];
Expand Down Expand Up @@ -130,7 +130,7 @@ const linkGroups: LinkGroup[] = [
align-items: center;
}

@media (width < 760px) {
@media (width < 900px) {
flex-direction: column;
gap: var(--space-xl);

Expand Down Expand Up @@ -193,7 +193,7 @@ const linkGroups: LinkGroup[] = [
display: flex;
flex-direction: column;
align-items: flex-start;
width: 13ch;
width: 12ch;

> * {
padding-block: var(--space-2xs);
Expand Down

0 comments on commit 968e79a

Please sign in to comment.