You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -678,6 +717,20 @@ function provideCssDirectiveCompletions(
678
717
)})`,
679
718
},
680
719
},
720
+
...(semver.gte(state.version,'1.8.0')
721
+
? [
722
+
{
723
+
label: '@layer',
724
+
documentation: {
725
+
kind: 'markdown'astypeofMarkupKind.Markdown,
726
+
value: `Use the \`@layer\` directive to tell Tailwind which "bucket" a set of custom styles belong to. Valid layers are \`base\`, \`components\`, and \`utilities\`.\n\n[Tailwind CSS Documentation](${docsUrl(
727
+
state.version,
728
+
'functions-and-directives/#layer'
729
+
)})`,
730
+
},
731
+
},
732
+
]
733
+
: []),
681
734
]
682
735
683
736
return{
@@ -779,6 +832,7 @@ export async function doComplete(
0 commit comments