mirror of
https://github.com/BetterSEQTA/BetterSEQTA-Plus.git
synced 2026-06-06 03:34:40 +00:00
21 lines
393 B
JavaScript
21 lines
393 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
darkMode: "class",
|
|
theme: {
|
|
fontSize: {
|
|
"xs": ".65rem",
|
|
"sm": ".775rem",
|
|
"base": "0.65rem",
|
|
"md": "0.65rem",
|
|
"lg": "1rem",
|
|
"xl": "1.25rem",
|
|
"2xl": "1.5rem",
|
|
"3xl": "1.875rem",
|
|
}
|
|
},
|
|
plugins: [],
|
|
}; |