13 lines
230 B
CSS
13 lines
230 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
body {
|
|
@apply m-0 bg-slate-100 text-slate-900;
|
|
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
|
|
}
|
|
|
|
#root {
|
|
@apply min-h-screen;
|
|
}
|