15 lines
No EOL
420 B
CSS
15 lines
No EOL
420 B
CSS
/* TailwindCSS base styles */
|
|
/* see https://tailwindcss.com/docs/functions-and-directives#tailwind */
|
|
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
@tailwind variants;
|
|
|
|
/* Site Specific */
|
|
/* put site specific css styles here using the @layer directive */
|
|
/* see https://tailwindcss.com/docs/functions-and-directives#layer */
|
|
@layer components {
|
|
.welcome-headline {
|
|
@apply text-sky-600;
|
|
}
|
|
} |