mirror of
https://github.com/formbricks/formbricks.git
synced 2025-12-30 18:30:32 -06:00
* Fix formbricks-js modal covered by other elements * Fix wrong usage of prefix * add changeset
19 lines
317 B
JavaScript
19 lines
317 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
important: "#fbjs",
|
|
darkMode: "class",
|
|
corePlugins: {
|
|
preflight: false,
|
|
},
|
|
content: ["./src/**/*.{tsx,ts,jsx,js}"],
|
|
theme: {
|
|
extend: {
|
|
zIndex: {
|
|
'999999': '999999',
|
|
}
|
|
},
|
|
},
|
|
prefix: "fb-",
|
|
plugins: [],
|
|
};
|