Skip to content

Commit

Permalink
fix: minor design fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher2K committed Nov 30, 2024
1 parent 0e987d7 commit 575a4df
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ export function TransferItem({
borderRadius="md"
borderWidth="thin"
borderStyle="solid"
borderColor="border.muted"
borderColor="border.subtle"
p="4"
>
<Stack gap="0" w="full">
Expand Down
8 changes: 5 additions & 3 deletions swapify_web/src/layouts/ContentLayout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,12 @@ import { ContentContainer } from "#root/features/marketing/components/content-co
import PageLayout from "./PageLayout.astro";
interface Props {
title: string;
frontmatter: {
title: string;
};
}
const { title } = Astro.props;
const { frontmatter } = Astro.props;
const contentStyles = css({
flex: 1,
Expand Down Expand Up @@ -132,7 +134,7 @@ const contentStyles = css({
});
---

<PageLayout title={title}>
<PageLayout title={frontmatter.title}>
<ContentContainer flex={1} className={contentStyles}>
<slot />
</ContentContainer>
Expand Down
2 changes: 1 addition & 1 deletion swapify_web/src/pages/privacy-policy.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
layout: ../layouts/ContentLayout.astro
title: Privacy Policy - Swapify
title: Swapify | Privacy Policy
---

# Privacy Policy
Expand Down
2 changes: 1 addition & 1 deletion swapify_web/src/pages/terms-of-service.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
layout: ../layouts/ContentLayout.astro
title: Terms of Service - Swapify
title: Swapify | Terms of Service
---

# Swapify Terms of Use
Expand Down

0 comments on commit 575a4df

Please sign in to comment.