12 lines
151 B
CSS
12 lines
151 B
CSS
|
|
@tailwind base;
|
||
|
|
@tailwind components;
|
||
|
|
@tailwind utilities;
|
||
|
|
|
||
|
|
body {
|
||
|
|
@apply m-0 bg-white text-ink-800 antialiased;
|
||
|
|
}
|
||
|
|
|
||
|
|
#root {
|
||
|
|
@apply min-h-screen;
|
||
|
|
}
|