mirror of
https://github.com/tinyhumansai/openhuman.git
synced 2026-07-30 23:14:37 +00:00
- Replaced Tailwind CSS directives in globals.css with an import statement for better compatibility. - Modified the HeroCTA component layout to improve responsiveness and alignment across different screen sizes.
20 lines
403 B
CSS
20 lines
403 B
CSS
@import "tailwindcss";
|
|
|
|
:root {
|
|
--background: #09090b;
|
|
--foreground: #fafafa;
|
|
}
|
|
|
|
@theme inline {
|
|
--color-background: var(--background);
|
|
--color-foreground: var(--foreground);
|
|
--font-sans: var(--font-geist-sans);
|
|
--font-mono: var(--font-geist-mono);
|
|
}
|
|
|
|
body {
|
|
background: var(--background);
|
|
color: var(--foreground);
|
|
font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
|
|
}
|