geosphere-maps/tailwind.config.js

19 lines
460 B
JavaScript
Raw Permalink Normal View History

2023-07-28 06:30:40 +00:00
/** @type {import('tailwindcss').Config} */
2023-09-22 09:33:13 +00:00
2023-07-28 06:30:40 +00:00
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
2023-09-22 09:33:13 +00:00
'gradient-conic': 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
2023-07-28 06:30:40 +00:00
},
},
},
plugins: [],
2023-09-22 09:33:13 +00:00
};