Files
openhuman/lander/app/globals.css
T
Steven Enamakel 2ecc7cad22 refactor: update CSS imports and enhance HeroCTA layout for improved responsiveness
- 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.
2026-03-20 16:56:18 -07:00

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;
}