mirror of
https://github.com/vercel/next-learn.git
synced 2026-06-11 09:51:47 +00:00
* chore: fix dashboard readme * feat: add prettier config * chore: update Node version requirement to 18.17.0 * Remove extra space * Update @tailwind/forms * Testing --------- Co-authored-by: mohamed.elzanaty3 <mohamed.elzanaty3@vodafone.com> Co-authored-by: Delba de Oliveira <32464864+delbaoliveira@users.noreply.github.com> Co-authored-by: Delba de Oliveira <delbabrown@gmail.com>
33 lines
649 B
TypeScript
33 lines
649 B
TypeScript
import type { Config } from 'tailwindcss';
|
|
|
|
const config: Config = {
|
|
content: [
|
|
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
|
|
'./components/**/*.{js,ts,jsx,tsx,mdx}',
|
|
'./app/**/*.{js,ts,jsx,tsx,mdx}',
|
|
],
|
|
theme: {
|
|
extend: {
|
|
gridTemplateColumns: {
|
|
'13': 'repeat(13, minmax(0, 1fr))',
|
|
},
|
|
colors: {
|
|
blue: {
|
|
400: '#2589FE',
|
|
500: '#0070F3',
|
|
600: '#2F6FEB',
|
|
},
|
|
},
|
|
},
|
|
keyframes: {
|
|
shimmer: {
|
|
'100%': {
|
|
transform: 'translateX(100%)',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
plugins: [require('@tailwindcss/forms')],
|
|
};
|
|
export default config;
|