merakiui/tailwind.config.js

25 lines
469 B
JavaScript
Raw Normal View History

2020-05-03 22:33:27 +00:00
module.exports = {
2021-02-15 07:39:16 +00:00
purge: [
'./components/**/*.{vue,js}',
'./pages/**/*.vue',
2021-05-27 19:02:09 +00:00
'./plugins/**/*.{js,ts}',
2021-02-15 07:39:16 +00:00
'./nuxt.config.{js,ts}',
],
2021-05-27 19:02:09 +00:00
mode: 'jit',
darkMode: "class",
2020-05-05 01:16:59 +00:00
theme: {
extend: {
fontFamily: {
2020-08-15 12:21:08 +00:00
roboto: ["Roboto"],
2020-05-05 01:16:59 +00:00
},
spacing: {
2020-09-06 19:12:34 +00:00
128: "32rem",
2020-05-05 01:16:59 +00:00
},
},
2020-05-03 23:52:21 +00:00
},
variants: {
2021-02-07 15:59:43 +00:00
extend: {},
},
2020-05-05 01:16:59 +00:00
plugins: [],
2020-08-15 12:21:08 +00:00
};