- Set up Next.js 15 with TypeScript and Tailwind CSS v4 - Configured responsive layout with header, sidebar, and main content area - Implemented directory scan modal with real-time validation - Added reusable Button component with primary/secondary variants - Created API endpoint for server-side directory validation - Integrated Tabler icons for UI feedback - Configured PostCSS with @tailwindcss/postcss for proper styling 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
19 lines
308 B
CSS
19 lines
308 B
CSS
@import "tailwindcss";
|
|
|
|
:root {
|
|
--background: #ffffff;
|
|
--foreground: #171717;
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
:root {
|
|
--background: #0a0a0a;
|
|
--foreground: #ededed;
|
|
}
|
|
}
|
|
|
|
body {
|
|
color: var(--foreground);
|
|
background: var(--background);
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
} |