ca54e5c6f7
# Conflicts: # README.md
18 lines
307 B
CSS
18 lines
307 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
:root {
|
|
--background: #0a0a0a;
|
|
--foreground: #ededed;
|
|
}
|
|
|
|
body {
|
|
color: var(--foreground);
|
|
background: var(--background);
|
|
font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
|
|
overflow: hidden;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|