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

25 lines
447 B

/** @type {import('tailwindcss').Config} */
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}"
],
theme: {
extend: {
fontFamily: {
// 'sans': ['Ubuntu', ...defaultTheme.fontFamily.sans],
},
fontSize: {
sm: '0.8rem',
base: '1rem'
}
},
},
plugins: [
require('@tailwindcss/forms'),
],
}