From a6105eb8c75689b04c9edd139d04b81668daea5e Mon Sep 17 00:00:00 2001 From: filtered <176114999+webfiltered@users.noreply.github.com> Date: Mon, 20 Jan 2025 06:16:03 +1100 Subject: [PATCH] [DevExperience] Tailwind rules (#2292) --- .gitignore | 2 ++ .vscode/settings.json.default | 5 ++++ .vscode/tailwind.json | 55 +++++++++++++++++++++++++++++++++++ 3 files changed, 62 insertions(+) create mode 100644 .vscode/settings.json.default create mode 100644 .vscode/tailwind.json diff --git a/.gitignore b/.gitignore index 6f3c6f424..020d331bf 100644 --- a/.gitignore +++ b/.gitignore @@ -16,6 +16,8 @@ dist-ssr .vscode/* *.code-workspace !.vscode/extensions.json +!.vscode/tailwind.json +!.vscode/settings.json.default .idea .DS_Store *.suo diff --git a/.vscode/settings.json.default b/.vscode/settings.json.default new file mode 100644 index 000000000..f1ed5fba6 --- /dev/null +++ b/.vscode/settings.json.default @@ -0,0 +1,5 @@ +{ + "css.customData": [ + ".vscode/tailwind.json" + ] +} diff --git a/.vscode/tailwind.json b/.vscode/tailwind.json new file mode 100644 index 000000000..96a1f5797 --- /dev/null +++ b/.vscode/tailwind.json @@ -0,0 +1,55 @@ +{ + "version": 1.1, + "atDirectives": [ + { + "name": "@tailwind", + "description": "Use the `@tailwind` directive to insert Tailwind's `base`, `components`, `utilities` and `screens` styles into your CSS.", + "references": [ + { + "name": "Tailwind Documentation", + "url": "https://tailwindcss.com/docs/functions-and-directives#tailwind" + } + ] + }, + { + "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": "@responsive", + "description": "You can generate responsive variants of your own classes by wrapping their definitions in the `@responsive` directive:\n```css\n@responsive {\n .alert {\n background-color: #E53E3E;\n }\n}\n```\n", + "references": [ + { + "name": "Tailwind Documentation", + "url": "https://tailwindcss.com/docs/functions-and-directives#responsive" + } + ] + }, + { + "name": "@screen", + "description": "The `@screen` directive allows you to create media queries that reference your breakpoints by **name** instead of duplicating their values in your own CSS:\n```css\n@screen sm {\n /* ... */\n}\n```\n…gets transformed into this:\n```css\n@media (min-width: 640px) {\n /* ... */\n}\n```\n", + "references": [ + { + "name": "Tailwind Documentation", + "url": "https://tailwindcss.com/docs/functions-and-directives#screen" + } + ] + }, + { + "name": "@variants", + "description": "Generate `hover`, `focus`, `active` and other **variants** of your own utilities by wrapping their definitions in the `@variants` directive:\n```css\n@variants hover, focus {\n .btn-brand {\n background-color: #3182CE;\n }\n}\n```\n", + "references": [ + { + "name": "Tailwind Documentation", + "url": "https://tailwindcss.com/docs/functions-and-directives#variants" + } + ] + } + ] +}