Skip to content

Commit

Permalink
Merge pull request #395 from jsconfjp/fix-style
Browse files Browse the repository at this point in the history
fix(2023): remove padding from body
  • Loading branch information
Leko authored Nov 17, 2023
2 parents 5308f57 + 22167dc commit 1547b7d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion 2023/src/components/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ const GlobalStyle = createGlobalStyle`
body {
font-size: 1.6em;
font-family: ${({ theme }) => theme.fonts.text}
padding: 0;
margin: 0;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
Expand Down Expand Up @@ -96,8 +97,8 @@ export function Layout({ children, background }: Props) {

return (
<ThemeProvider theme={theme}>
<GlobalStyle />
<>
<GlobalStyle />
<OnlyMobile>
<HeaderMobile
siteTitle={site.siteMetadata.title}
Expand Down

0 comments on commit 1547b7d

Please sign in to comment.