mirror of
https://github.com/wrabit/django-cotton.git
synced 2025-08-04 15:18:20 +00:00
first release
This commit is contained in:
parent
c38c990b5b
commit
4c4d00d4df
2269 changed files with 323498 additions and 2 deletions
27
docs/docs_project/tailwind.config.js
Normal file
27
docs/docs_project/tailwind.config.js
Normal file
|
@ -0,0 +1,27 @@
|
|||
const defaultTheme = require('tailwindcss/defaultTheme')
|
||||
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
module.exports = {
|
||||
darkMode: 'class',
|
||||
content: [
|
||||
"**/*.{html,js,py}",
|
||||
"!./**/node_modules/**",
|
||||
"!**/node_modules/**",
|
||||
],
|
||||
theme: {
|
||||
extend: {
|
||||
fontFamily: {
|
||||
'sans': ['Plus Jakarta Sans', ...defaultTheme.fontFamily.sans],
|
||||
'logo': ['Velux Transform', ...defaultTheme.fontFamily.sans],
|
||||
'mono': ['Roboto Mono', ...defaultTheme.fontFamily.mono],
|
||||
},
|
||||
spacing: {
|
||||
'8xl': '96rem',
|
||||
},
|
||||
}
|
||||
},
|
||||
plugins: [
|
||||
require('@tailwindcss/typography'),
|
||||
// ...
|
||||
],
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue