Skip to content

Commit

Permalink
Reduce footer height to 32px
Browse files Browse the repository at this point in the history
  • Loading branch information
JunichiSugiura committed Jun 20, 2024
1 parent b907eb7 commit 56e46a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/keychain/src/components/layout/Container/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export function Container({
);
}

export const FOOTER_HEIGHT = 40;
export const FOOTER_HEIGHT = 32;
export const PORTAL_WINDOW_HEIGHT = 600;

function Wrapper({
Expand Down Expand Up @@ -99,7 +99,7 @@ function Wrapper({
const LayoutContext = createContext<LayoutContextValue>({
variant: "default",
footerHeight: 0,
setFooterHeight: () => {},
setFooterHeight: () => { },
});

type LayoutContextValue = {
Expand Down

0 comments on commit 56e46a5

Please sign in to comment.