akkounts/tailwind.config.js
Sebastian Kippe 835152c656
All checks were successful
continuous-integration/drone/push Build is passing
Introduce ViewComponent
https://viewcomponent.org
2022-02-20 16:53:11 -06:00

19 lines
329 B
JavaScript

module.exports = {
content: [
'./app/components/**/*.html.erb',
'./app/views/**/*.html.erb',
'./app/helpers/**/*.rb',
'./app/javascript/**/*.js'
],
theme: {
extend: {
fontFamily: {
sans: ['Open Sans', 'sans-serif']
}
},
},
plugins: [
require('@tailwindcss/forms')
],
}