mirror of
https://github.com/vercel/next-learn.git
synced 2026-06-26 14:16:13 +00:00
* Add local date formatting * Add dashboard hero image * Update hero styles * Polish login form * Use Next.js symbol for logo * Use Next.js symbol for favicon * Use img instead of Image * Add mobile styles to login form * Polish nav styles to fit logo * Fix build error * Create og-image.png * Remove unused code * Replace svg logo with png * Update Images and Links * Misc * Remove duplicate package-lock files * Prettier
19 lines
399 B
TypeScript
19 lines
399 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))',
|
|
},
|
|
},
|
|
},
|
|
plugins: [require('@tailwindcss/forms')],
|
|
};
|
|
export default config;
|