mirror of
https://github.com/Alee14/sei-website.git
synced 2025-01-22 05:01:47 -05:00
19 lines
335 B
JavaScript
19 lines
335 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
'./pages/**/*.{js,ts,jsx,tsx}',
|
|
'./components/**/*.{js,ts,jsx,tsx}',
|
|
],
|
|
theme: {
|
|
fontFamily: {
|
|
sans: ['Montserrat', 'sans-serif'],
|
|
},
|
|
extend: {
|
|
zIndex: {
|
|
'm10': '-10',
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|
|
|