Skip to content

Commit

Permalink
add font
Browse files Browse the repository at this point in the history
  • Loading branch information
boomtnt2843 committed Jul 16, 2023
1 parent 098c35a commit 45d3534
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
1 change: 1 addition & 0 deletions src/app.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<meta charset="utf-8" />
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
<meta name="viewport" content="width=device-width" />
<link href='https://fonts.googleapis.com/css?family=Montserrat' rel='stylesheet'>
%sveltekit.head%
</head>
<body data-sveltekit-preload-data="hover">
Expand Down
3 changes: 0 additions & 3 deletions src/app.postcss
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
/* Write your global styles here, in PostCSS syntax */
@tailwind base;
@tailwind base;
@tailwind components;
@tailwind utilities;
@tailwind components;
@tailwind utilities;
8 changes: 7 additions & 1 deletion tailwind.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,13 @@ const config = {
extend: {
boxShadow: {
'top': '0 -20px 60px -15px rgba(0, 0, 0, 0.3)',
}
},
fontFamily: {
'sans': ['Montserrat'],
'serif': ['Montserrat'],
'mono': ['Montserrat'],

}
}
},

Expand Down

0 comments on commit 45d3534

Please sign in to comment.