Skip to content

Commit

Permalink
Add cartridge full logo to footer (#331)
Browse files Browse the repository at this point in the history
  • Loading branch information
JunichiSugiura authored May 31, 2024
1 parent 8af30ef commit 53a3457
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions packages/keychain/src/components/Container/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { motion } from "framer-motion";
import { ReactNode } from "react";
import { Header, HeaderProps } from "./Header";
import { constants } from "starknet";
import { CartridgeIcon } from "@cartridge/ui";
import { CartridgeLogo } from "@cartridge/ui";

export function Container({
children,
Expand Down Expand Up @@ -50,14 +50,16 @@ export function Container({
color="text.secondary"
alignItems="center"
justify="center"
minH={FOOTER_HEIGHT / 4}
h={FOOTER_HEIGHT / 4}
bottom={0}
position={["fixed", "fixed", "absolute"]}
gap={1}
>
<CartridgeIcon fontSize="sm" />
<Text fontSize="xs" color="currentColor">
Controller by Cartridge
Controller by
</Text>

<CartridgeLogo fontSize={100} color="text.secondary" />
</HStack>
</Wrapper >
);
Expand Down

0 comments on commit 53a3457

Please sign in to comment.