create-dstack-app
Version:
Init a project with DStack, a front-end tech stack.
19 lines (16 loc) • 410 B
CSS
/* TailwindCSS */
@tailwind base;
@tailwind components;
@tailwind utilities;
@plugin "@tailwindcss/typography";
/* DaisyUI theme */
body {
color: var(--foreground);
background: var(--background);
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
/* DaisyUI */
@plugin "daisyui" {
themes: all;
}