mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 20:29:06 +00:00
26 lines
584 B
JavaScript
26 lines
584 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
|
|
module.exports = {
|
|
content: [
|
|
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./components/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./app/**/*.{js,ts,jsx,tsx,mdx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
gridTemplateRows: {
|
|
"layout-topbar": "auto minmax(0,1fr)",
|
|
"mobile-inner": "minmax(0, 2fr) minmax(0, 1fr)",
|
|
"layout-one": "minmax(0, 1fr) auto",
|
|
},
|
|
animation: {
|
|
"spin-slow": "spin 3s linear infinite",
|
|
},
|
|
colors: {
|
|
bluegrey: "RGB(90, 122, 158)",
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|