Files
hsp-gdh-front/tailwind.config.js
2024-03-10 14:58:35 +01:00

24 lines
466 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
'shdw': 'rgba(0, 0, 0, 0.5)'
},
backgroundImage: {
'hero': "url('/src/assets/hero.jpg')",
},
spacing: {
'mfull' : '-100%'
}
},
},
plugins: [],
}