From f2873b05142f0ea4f932549b1dbc336d44e75add Mon Sep 17 00:00:00 2001 From: Aoife Date: Fri, 2 Apr 2021 03:44:19 -0400 Subject: [PATCH] setup tailwind and fonts --- .vscode/css_custom_data.json | 34 ++++++++++++++++++++++++++++++++++ .vscode/settings.json | 3 +++ public/index.html | 2 +- src/index.css | 9 +++++++++ tailwind.config.js | 7 ++++++- 5 files changed, 53 insertions(+), 2 deletions(-) create mode 100644 .vscode/css_custom_data.json create mode 100644 .vscode/settings.json diff --git a/.vscode/css_custom_data.json b/.vscode/css_custom_data.json new file mode 100644 index 0000000..cdcd61e --- /dev/null +++ b/.vscode/css_custom_data.json @@ -0,0 +1,34 @@ +{ + "atDirectives": [ + { + "name": "@tailwind", + "description": "Use the @tailwind directive to insert Tailwind’s `base`, `components`, `utilities`, and `screens` styles into your CSS.", + "references": [ + { + "name": "Tailwind’s “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": "Tailwind’s “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": "Tailwind’s “Functions & Directives” documentation", + "url": "https://tailwindcss.com/docs/functions-and-directives/#layer" + } + ] + } + ] +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..7058fcc --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "css.customData": [".vscode/css_custom_data.json"], +} \ No newline at end of file diff --git a/public/index.html b/public/index.html index 51f0ffa..c8d00fa 100644 --- a/public/index.html +++ b/public/index.html @@ -12,7 +12,7 @@