From d1810641658d9af9aeb364ed7a6ca312c0dbf04d Mon Sep 17 00:00:00 2001 From: efim Date: Thu, 29 Jun 2023 11:35:03 +0000 Subject: [PATCH] feat(13): setting up tailwindcss --- 13-testimonials-grid-section/src/input.css | 3 +++ .../src/main/resources/templates/index.html | 3 ++- 13-testimonials-grid-section/tailwind.config.js | 9 +++++++++ 3 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 13-testimonials-grid-section/src/input.css create mode 100644 13-testimonials-grid-section/tailwind.config.js diff --git a/13-testimonials-grid-section/src/input.css b/13-testimonials-grid-section/src/input.css new file mode 100644 index 0000000..b5c61c9 --- /dev/null +++ b/13-testimonials-grid-section/src/input.css @@ -0,0 +1,3 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; diff --git a/13-testimonials-grid-section/src/main/resources/templates/index.html b/13-testimonials-grid-section/src/main/resources/templates/index.html index 9e35eb1..66bdc73 100644 --- a/13-testimonials-grid-section/src/main/resources/templates/index.html +++ b/13-testimonials-grid-section/src/main/resources/templates/index.html @@ -4,7 +4,8 @@ - + + Frontend Mentor | [Challenge Name Here] diff --git a/13-testimonials-grid-section/tailwind.config.js b/13-testimonials-grid-section/tailwind.config.js new file mode 100644 index 0000000..089db9a --- /dev/null +++ b/13-testimonials-grid-section/tailwind.config.js @@ -0,0 +1,9 @@ +/** @type {import('tailwindcss').Config} */ +module.exports = { + content: ["./src/**/*.html"], + theme: { + extend: {}, + }, + plugins: [], +} +