mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-01-26 10:59:53 +00:00
- Provides proper IDE hints and removes warnings from .vue SFC files. - Replaces all the v2 info with v4.
76 lines
2.5 KiB
JSON
76 lines
2.5 KiB
JSON
{
|
||
"version": 1.1,
|
||
"atDirectives": [
|
||
{
|
||
"name": "@import",
|
||
"description": "Use the `@import` directive to inline CSS files, including Tailwind itself, into your stylesheet.",
|
||
"references": [
|
||
{
|
||
"name": "Tailwind Documentation",
|
||
"url": "https://tailwindcss.com/docs/functions-and-directives#import"
|
||
}
|
||
]
|
||
},
|
||
{
|
||
"name": "@theme",
|
||
"description": "Use the `@theme` directive to define custom design tokens like fonts, colors, and breakpoints.",
|
||
"references": [
|
||
{
|
||
"name": "Tailwind Documentation",
|
||
"url": "https://tailwindcss.com/docs/functions-and-directives#theme"
|
||
}
|
||
]
|
||
},
|
||
{
|
||
"name": "@layer",
|
||
"description": "Use the `@layer` directive inside `@theme` to organize custom styles into different layers like `base`, `components`, and `utilities`.",
|
||
"references": [
|
||
{
|
||
"name": "Tailwind Documentation",
|
||
"url": "https://tailwindcss.com/docs/functions-and-directives#layer"
|
||
}
|
||
]
|
||
},
|
||
{
|
||
"name": "@apply",
|
||
"description": "Use the `@apply` directive to inline any existing utility classes into your own custom CSS. This is useful when you find a common utility pattern in your HTML that you’d like to extract to a new component.",
|
||
"references": [
|
||
{
|
||
"name": "Tailwind Documentation",
|
||
"url": "https://tailwindcss.com/docs/functions-and-directives#apply"
|
||
}
|
||
]
|
||
},
|
||
{
|
||
"name": "@config",
|
||
"description": "Use the `@config` directive to load a legacy JavaScript-based Tailwind configuration file.",
|
||
"references": [
|
||
{
|
||
"name": "Tailwind Documentation",
|
||
"url": "https://tailwindcss.com/docs/functions-and-directives#config"
|
||
}
|
||
]
|
||
},
|
||
{
|
||
"name": "@reference",
|
||
"description": "Use the `@reference` directive to import theme variables, custom utilities, and custom variants from other files without duplicating CSS.",
|
||
"references": [
|
||
{
|
||
"name": "Tailwind Documentation",
|
||
"url": "https://tailwindcss.com/docs/functions-and-directives#reference"
|
||
}
|
||
]
|
||
},
|
||
{
|
||
"name": "@plugin",
|
||
"description": "Use the `@plugin` directive to load a legacy JavaScript-based Tailwind plugin.",
|
||
"references": [
|
||
{
|
||
"name": "Tailwind Documentation",
|
||
"url": "https://tailwindcss.com/docs/functions-and-directives#plugin"
|
||
}
|
||
]
|
||
}
|
||
]
|
||
}
|