parent
2783de1eb2
commit
f2ff990cad
9 changed files with 33919 additions and 10849 deletions
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
@ -1,16 +1,17 @@ |
||||
@tailwind base; |
||||
@tailwind components; |
||||
@tailwind utilities; |
||||
|
||||
body { |
||||
margin: 0; |
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', |
||||
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', |
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", |
||||
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", |
||||
sans-serif; |
||||
-webkit-font-smoothing: antialiased; |
||||
-moz-osx-font-smoothing: grayscale; |
||||
} |
||||
|
||||
code { |
||||
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', |
||||
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", |
||||
monospace; |
||||
} |
||||
|
@ -1,11 +1,15 @@ |
||||
module.exports = { |
||||
purge: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'], |
||||
darkMode: 'class', // or 'media' or 'class'
|
||||
purge: ["./src/**/*.{js,jsx,ts,tsx}", "./public/index.html"], |
||||
darkMode: "class", // or 'media' or 'class'
|
||||
theme: { |
||||
extend: {}, |
||||
extend: { |
||||
fontFamily: { |
||||
sansbold: ["sansbold"], |
||||
}, |
||||
}, |
||||
}, |
||||
variants: { |
||||
extend: {}, |
||||
}, |
||||
plugins: [], |
||||
} |
||||
}; |
||||
|
Loading…
Reference in new issue