feat: Add tailwind for utility classes (#562)

* feat: Add tailwind for styling

* Use ESM for postcss

* Remove overlapping classes

* More layout fixes

* Pin footer to bottom

* Replace .old-container

* Fix prettier
This commit is contained in:
Lachlan Collins
2023-12-31 00:09:01 +11:00
committed by GitHub
parent 7c382c8a8f
commit 4ffc0b7f92
17 changed files with 503 additions and 459 deletions

10
postcss.config.js Normal file
View File

@@ -0,0 +1,10 @@
// @ts-check
import tailwindcss from 'tailwindcss';
import autoprefixer from 'autoprefixer';
const config = {
plugins: [tailwindcss(), autoprefixer()]
};
export default config;