All checks were successful
continuous-integration/drone/push Build is passing
Based on https://petr.codes/blog/rails/modern-rails-flash-messages/part-3/
21 lines
413 B
JavaScript
21 lines
413 B
JavaScript
module.exports = {
|
|
content: [
|
|
'./app/assets/stylesheets/components/**/*.css',
|
|
'./app/components/**/*.html.erb',
|
|
'./app/components/**/*.rb',
|
|
'./app/views/**/*.html.erb',
|
|
'./app/helpers/**/*.rb',
|
|
'./app/javascript/**/*.js'
|
|
],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: ['Open Sans', 'sans-serif']
|
|
}
|
|
},
|
|
},
|
|
plugins: [
|
|
require('@tailwindcss/forms')
|
|
],
|
|
}
|