mirror of
https://github.com/kjanat/livedash-node.git
synced 2026-01-16 07:32:11 +01:00
Improves the dashboard's appearance and user experience by updating styles and layouts. Changes include: - Updates to color schemes and spacing for better readability and visual appeal. - Implements a responsive layout for the header to adapt to different screen sizes. - Refactors button styles for consistency and clarity. - Adds a gradient background to the main dashboard page. - Updates the NextAuth URL in the development environment.
15 lines
276 B
JavaScript
15 lines
276 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
const config = {
|
|
content: [
|
|
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./components/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./app/**/*.{js,ts,jsx,tsx,mdx}",
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
};
|
|
|
|
export default config;
|