Skip to content

Commit

Permalink
set font
Browse files Browse the repository at this point in the history
  • Loading branch information
gpelouze committed Sep 19, 2023
1 parent 744b65d commit 4f6ac3f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 2 additions & 0 deletions vre-panel/styles/globals.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,700;1,400&display=swap');

@tailwind base;
@tailwind components;
@tailwind utilities;
6 changes: 5 additions & 1 deletion vre-panel/tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@ module.exports = {
purge: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}', './templates/**/*.{js,ts,jsx,tsx}'],
content: [],
theme: {
extend: {},
extend: {
fontFamily: {
sans: ['Titillium Web', 'sans-serif'],
},
},
},
variants: {
textColor: ['responsive', 'hover', 'focus', 'active']
Expand Down

0 comments on commit 4f6ac3f

Please sign in to comment.