mirror of
https://github.com/usebruno/bruno.git
synced 2025-05-05 15:32:58 +00:00
* feature(postman_tests_scripts): automatic tests and scripts translation from postman import --------- Co-authored-by: Baptiste POULAIN <baptistepoulain@MAC882.local> Co-authored-by: bpoulaindev <bpoulainpro@gmail.com>
22 lines
430 B
JavaScript
22 lines
430 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
darkMode: ["class"],
|
|
content: [
|
|
'./pages/**/*.{js,jsx}',
|
|
'./components/**/*.{js,jsx}',
|
|
'./app/**/*.{js,jsx}',
|
|
'./src/**/*.{js,jsx}',
|
|
],
|
|
prefix: "",
|
|
theme: {
|
|
container: {
|
|
center: true,
|
|
padding: "2rem",
|
|
screens: {
|
|
"2xl": "1400px",
|
|
},
|
|
},
|
|
extend: {},
|
|
},
|
|
plugins: [require("@tailwindcss/forms")],
|
|
} |