Skip to content

Commit

Permalink
Created GlobalStyled and defined project font
Browse files Browse the repository at this point in the history
  • Loading branch information
j-barreiros committed Jan 8, 2023
1 parent 18faf9e commit 23df88d
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/GlobalStyle.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import { createGlobalStyle } from "styled-components";

const GlobalStyle = createGlobalStyle`
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');
* {
font-family: 'Poppins', sans-serif;
}
`

export default GlobalStyle;

0 comments on commit 23df88d

Please sign in to comment.