You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ctk/services/frontend/tailwind.config.js

54 lines
1.2 KiB
JavaScript

module.exports = {
darkMode: "class",
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
fontFamily: {
display: ['Gilroy', 'sans-serif'],
body: ['Graphik', 'sans-serif'],
},
extend: {
typography: (theme) => ({
DEFAULT: {
css: {
pre: {
'color': '#fff',
'line-height': '1.4',
'margin-top': '0',
'padding': '',
'padding-top': '0.4rem',
'padding-right': '1em',
'padding-bottom': '0.4rem',
'padding-left': '1em'
},
code: false,
'pre code': false,
'code::before': false,
'code::after': false,
p: {
'margin-top': '1em',
'margin-bottom': '1em'
}
}
}
})
},
height: theme => ({
auto: 'auto',
...theme('spacing'),
full: '100%',
screen: 'calc(var(--vh) * 100)',
}),
minHeight: theme => ({
...theme('spacing'),
full: '100%',
screen: 'calc(var(--vh) * 100)',
})
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography')
]
}