Skip to content

Commit

Permalink
fix(app): grid template of TwoColumnPageLayout was invalid (#291)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kohei Asai authored Mar 29, 2021
1 parent 8abbd9e commit d99fcaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/page-layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export const TwoColumnPageLayout: React.VFC<TwoColumnPageLayoutProps> = ({
className={css`
position: relative;
display: grid;
grid-template-columns: 1fr 320px;
grid-template-columns: calc(1152px - var(--space-xl) - 320px) 320px;
grid-template-areas: "main aside" "hr hr" "footer footer";
column-gap: var(--space-xl);
justify-content: center;
Expand Down

1 comment on commit d99fcaa

@vercel
Copy link

@vercel vercel bot commented on d99fcaa Mar 29, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.