Files
sveltesociety.dev/tailwind.config.cjs
Lachlan Collins 199d2f5666 Improve mobile responsiveness, more tailwind classes (#570)
* More tailwind classes

* Add prettier-plugin-tailwindcss

* More class replacement

* Update Card.svelte

* Remove tags from card

* Update header link

* Run format
2024-01-02 08:59:47 +11:00

15 lines
212 B
JavaScript

// @ts-check
/** @type {import('tailwindcss').Config} */
const config = {
content: ['./src/**/*.{html,js,ts,svelte}'],
theme: {
container: {
center: true
}
},
plugins: []
};
module.exports = config;