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 base; |
||||||
@tailwind components; |
@tailwind components; |
||||||
@tailwind utilities; |
@tailwind utilities; |
||||||
|
|
||||||
body { |
body { |
||||||
margin: 0; |
margin: 0; |
||||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", |
||||||
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', |
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", |
||||||
sans-serif; |
sans-serif; |
||||||
-webkit-font-smoothing: antialiased; |
-webkit-font-smoothing: antialiased; |
||||||
-moz-osx-font-smoothing: grayscale; |
-moz-osx-font-smoothing: grayscale; |
||||||
} |
} |
||||||
|
|
||||||
code { |
code { |
||||||
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', |
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", |
||||||
monospace; |
monospace; |
||||||
} |
} |
||||||
|
@ -1,11 +1,15 @@ |
|||||||
module.exports = { |
module.exports = { |
||||||
purge: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'], |
purge: ["./src/**/*.{js,jsx,ts,tsx}", "./public/index.html"], |
||||||
darkMode: 'class', // or 'media' or 'class'
|
darkMode: "class", // or 'media' or 'class'
|
||||||
theme: { |
theme: { |
||||||
extend: {}, |
extend: { |
||||||
|
fontFamily: { |
||||||
|
sansbold: ["sansbold"], |
||||||
|
}, |
||||||
|
}, |
||||||
}, |
}, |
||||||
variants: { |
variants: { |
||||||
extend: {}, |
extend: {}, |
||||||
}, |
}, |
||||||
plugins: [], |
plugins: [], |
||||||
} |
}; |
||||||
|
Loading…
Reference in new issue