Skip to content

Commit

Permalink
Merge pull request #997 from kufu/fix/footer-spacing
Browse files Browse the repository at this point in the history
フッターのログインボタン周辺の余白を修正
  • Loading branch information
tomof authored Dec 1, 2023
2 parents ed9aac1 + 9b7eaee commit 4b0d20c
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions src/components/shared/Footer/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -229,17 +229,23 @@ const FooterContainer = styled.div<{ isArticlePage: boolean }>`
const StyledLogoHeading = styled.h2`
margin-block: 9px 0;
font-size: ${CSS_FONT_SIZE.PX_14};
font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
font-family:
Helvetica Neue,
Helvetica,
Arial,
sans-serif;
line-height: 1.37;
color: ${CSS_COLOR.BLACK};
`

const Col1Container = styled.div`
grid-area: col1;
display: grid;
grid-template-columns: 100%;
gap: 24px;
justify-items: start;
> section {
display: grid;
grid-template-columns: 100%;
gap: 24px;
justify-items: start;
}
`

const Col2Container = styled.div`
Expand Down

0 comments on commit 4b0d20c

Please sign in to comment.