/* * global.css * * Global styles for the entire application */ /* Tailwind CSS */ @import 'tailwindcss'; /* local styles - update the below if you add a new style */ @import './theme.css'; @import './theme.utilities.css'; @import './shadcn-ui.css'; @import './markdoc.css'; @import './makerkit.css'; /* plugins - update the below if you add a new plugin */ @plugin "tailwindcss-animate"; /* content sources - update the below if you add a new path */ @source "../../../packages/*/src/**/*.{ts,tsx}"; @source "../../../packages/features/*/src/**/*.{ts,tsx}"; @source "../../../packages/billing/*/src/**/*.{ts,tsx}"; @source "../../../packages/plugins/*/src/**/*.{ts,tsx}"; @source "../../../packages/cms/*/src/**/*.{ts,tsx}"; @source "../{app,components,config,lib}/**/*.{ts,tsx}"; /* variants - update the below if you add a new variant */ @variant dark (&:where(.dark, .dark *)); @layer base { body { @apply bg-background text-foreground; font-feature-settings: 'rlig' 1, 'calt' 1; } *, ::after, ::before, ::backdrop, ::file-selector-button { border-color: var(--border, currentColor); } input::placeholder, textarea::placeholder { color: theme(--color-muted-foreground); } h1, h2, h3, h4, h5, h6 { @apply font-heading text-foreground font-semibold tracking-tight; } h1 { @apply text-5xl; } h2 { @apply text-4xl; } h3 { @apply text-3xl; } h4 { @apply text-xl; } h5 { @apply text-lg; } h6 { @apply text-base; } .lucide { stroke-width: 1; } .lucide { @apply size-4; } button { cursor: pointer; } }