12 lines
172 B
CSS
12 lines
172 B
CSS
@import "./styles/globals.css";
|
|
|
|
@layer base {
|
|
:root {
|
|
@apply font-sans;
|
|
}
|
|
|
|
body {
|
|
@apply m-0 min-w-[320px] min-h-screen bg-background text-foreground;
|
|
}
|
|
}
|