2023-11-24 06:07:09 +00:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
export default {
|
|
|
|
content: ['./src/**/*.{html,js,svelte,ts}'],
|
|
|
|
theme: {
|
2023-11-24 09:20:05 +00:00
|
|
|
extend: {
|
|
|
|
spacing: {
|
|
|
|
0.75: '0.1875rem'
|
|
|
|
}
|
|
|
|
}
|
2023-11-24 06:07:09 +00:00
|
|
|
},
|
|
|
|
plugins: []
|
|
|
|
};
|