mirror of
https://github.com/TheRealOwenRees/echecsfrance.git
synced 2026-07-22 20:16:57 +00:00
23 lines
575 B
JavaScript
23 lines
575 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
darkMode: "class",
|
|
content: [
|
|
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./components/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./app/**/*.{js,ts,jsx,tsx,mdx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
minHeight: {
|
|
// We use 100svh, falling back to vh for old browsers
|
|
// The 144px is for the header and footer
|
|
content: ['calc(100vh - 144px)', 'calc(100svh - 144px)'],
|
|
},
|
|
height: {
|
|
content: ['calc(100vh - 144px)', 'calc(100svh - 144px)'],
|
|
}
|
|
}
|
|
},
|
|
plugins: [],
|
|
};
|