Changes to the migration file make it necessary to reimport the database: db:drop, db:create, db:migrate, db:seed
30 lines
646 B
JavaScript
30 lines
646 B
JavaScript
const defaultTheme = require("tailwindcss/defaultTheme");
|
|
|
|
module.exports = {
|
|
content: [
|
|
"./public/*.html",
|
|
"./app/helpers/**/*.rb",
|
|
"./app/javascript/**/*.js",
|
|
"./app/views/**/*.{erb,haml,html,slim}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: ["Inter var", ...defaultTheme.fontFamily.sans],
|
|
},
|
|
},
|
|
extend: {
|
|
colors: {
|
|
"hsrm-red": "#c20008",
|
|
"hsrm-red-dark": "#af0007",
|
|
"hsrm-red-light": "#e20009",
|
|
},
|
|
},
|
|
},
|
|
plugins: [
|
|
require("@tailwindcss/forms"),
|
|
require("@tailwindcss/typography"),
|
|
require("@tailwindcss/container-queries"),
|
|
],
|
|
};
|