fix(frontend): fix markdown preview rendering and add dark mode styling

This commit is contained in:
2026-02-05 19:14:51 -05:00
parent bb6019ae8d
commit 4c03fee2f5
6 changed files with 437 additions and 32 deletions

View File

@@ -1,8 +1,9 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
darkMode: 'class',
theme: {
extend: {},
},
plugins: [],
plugins: [require('@tailwindcss/typography')],
}