felicity-lims/frontend/vite/tailwind.config.js
Aurthur Musendame d70596f99c added frontend for uncertainties
added frontend for specifications
added frontend for detection limits
added frontend for correction factors
2022-02-23 23:07:31 +02:00

31 lines
577 B
JavaScript

const colors = require('tailwindcss/colors')
module.exports = {
future: {
removeDeprecatedGapUtilities: true,
purgeLayersByDefault: true,
},
purge: [
'./index.html',
'./public/**/*.html',
'./src/**/*.vue',
],
prefix: '',
important: false,
separator: ':',
corePlugins: {},
plugins: [
require('@tailwindcss/custom-forms'),
],
theme: {
extend: {
gridTemplateColumns: {
'dashboard': '150px minmax(350px, 1fr)',
},
colors: {
amber: colors.amber,
black: colors.black,
},
},
}
}