setup tailwind and fonts

This commit is contained in:
Aoife
2021-04-06 13:37:15 -04:00
parent 689225a650
commit f2873b0514
5 changed files with 53 additions and 2 deletions
+34
View File
@@ -0,0 +1,34 @@
{
"atDirectives": [
{
"name": "@tailwind",
"description": "Use the @tailwind directive to insert Tailwinds `base`, `components`, `utilities`, and `screens` styles into your CSS.",
"references": [
{
"name": "Tailwinds “Functions & Directives” documentation",
"url": "https://tailwindcss.com/docs/functions-and-directives/#tailwind"
}
]
},
{
"name": "@apply",
"description": "Use @apply to inline any existing utility classes into your own custom CSS.",
"references": [
{
"name": "Tailwinds “Functions & Directives” documentation",
"url": "https://tailwindcss.com/docs/functions-and-directives/#apply"
}
]
},
{
"name": "@layer",
"description": "Use the @layer directive to tell Tailwind which \"bucket\" a set of custom styles belong to. Valid layers are a base, components, and utilities.",
"references": [
{
"name": "Tailwinds “Functions & Directives” documentation",
"url": "https://tailwindcss.com/docs/functions-and-directives/#layer"
}
]
}
]
}
+3
View File
@@ -0,0 +1,3 @@
{
"css.customData": [".vscode/css_custom_data.json"],
}