feat: online converter

This commit is contained in:
2025-02-15 15:19:03 +01:00
parent 891cb90131
commit 4662ae040d
15 changed files with 3381 additions and 1233 deletions

30
tailwind.config.js Normal file
View File

@@ -0,0 +1,30 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./app/**/*.{js,ts,jsx,tsx,mdx}'],
theme: {
extend: {
typography: {
DEFAULT: {
css: {
pre: {
backgroundColor: '#f6f8fa',
padding: '1rem',
borderRadius: '0.375rem',
overflowX: 'auto',
},
code: {
backgroundColor: '#f6f8fa',
padding: '0.25rem 0.375rem',
borderRadius: '0.25rem',
fontFamily: 'ui-monospace, monospace',
fontSize: '0.875em',
},
'code::before': { content: '""' },
'code::after': { content: '""' },
},
},
},
},
},
plugins: [require('@tailwindcss/typography')],
};