mirror of
https://github.com/skidoodle/erettsegi-browser.git
synced 2026-04-27 21:17:36 +02:00
cf243d46f1
- Set output mode to "standalone" in next.config.ts - Update dependencies in package.json: - Upgrade @heroui/react to ^2.8.5 - Upgrade framer-motion to ^12.23.25 - Upgrade next to 16.0.7 - Upgrade react and react-dom to 19.2.1 - Upgrade undici to ^7.16.0 - Upgrade devDependencies including @biomejs/biome, @tailwindcss/postcss, and typescript - Modify error handling in API routes to simplify catch blocks - Refactor NotFound component for cleaner JSX structure - Update global CSS imports for consistency - Change tsconfig to use "react-jsx" for JSX and include additional type definitions - Add GitHub Actions workflow for Docker image build and push - Create Dockerfile for multi-stage build process - Add development and production Docker Compose configurations ai commit message xd
23 lines
374 B
CSS
23 lines
374 B
CSS
@import "tailwindcss";
|
|
@plugin "./hero.ts";
|
|
|
|
@source "../../node_modules/@heroui/theme/dist/**/*.{js,ts,jsx,tsx}";
|
|
@custom-variant dark (&:is(.dark *));
|
|
|
|
@layer base {
|
|
*,
|
|
::after,
|
|
::before,
|
|
::backdrop,
|
|
::file-selector-button {
|
|
border-color: var(--color-gray-200, currentcolor);
|
|
}
|
|
}
|
|
|
|
body {
|
|
background-color: #121212;
|
|
margin: 0;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
}
|