mirror of
https://github.com/vercel/flags.git
synced 2026-09-19 03:49:23 +08:00
0910327c65
* add next-16 tests * upgrade biome * upgrade react in next-16 * tsconfig * try with middleware.ts * Revert "try with middleware.ts" This reverts commit894b6ed5ce. * Revert "try adding executablePath" This reverts commita4991996fe. * ensure x-middleware-rewrite * test x-nextjs-cache * rm playwright --ui * adjust biome schema version * disable getStaticPaths in pages router * try chromium * re-enable ci playwright workaround
22 lines
345 B
CSS
22 lines
345 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
: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;
|
|
}
|