mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-05 21:32:02 -06:00
* add new onboarding for new and existing Formbricks users * Add new personalized template view --------- Co-authored-by: Johannes <johannes@formbricks.com> Co-authored-by: Matthias Nannt <mail@matthiasnannt.com>
10 lines
300 B
JavaScript
10 lines
300 B
JavaScript
const base = require("../../packages/tailwind-config/tailwind.config");
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
...base,
|
|
content: [...base.content],
|
|
safelist: [{ pattern: /max-w-./, variants: "sm" }],
|
|
darkMode: "class", // Set dark mode to use the 'class' strategy
|
|
};
|