From b8c5a0f19b724d9fb5f36fdaf1578a0f73128a7a Mon Sep 17 00:00:00 2001 From: efim Date: Wed, 28 Jun 2023 08:43:28 +0000 Subject: [PATCH] feat(12): tailwindcss init --- 12-order-summary-component-thymeleaf/src/input.css | 3 +++ .../src/main/resources/templates/index.html | 6 ++++-- 12-order-summary-component-thymeleaf/tailwind.config.js | 9 +++++++++ 3 files changed, 16 insertions(+), 2 deletions(-) create mode 100644 12-order-summary-component-thymeleaf/src/input.css create mode 100644 12-order-summary-component-thymeleaf/tailwind.config.js diff --git a/12-order-summary-component-thymeleaf/src/input.css b/12-order-summary-component-thymeleaf/src/input.css new file mode 100644 index 0000000..b5c61c9 --- /dev/null +++ b/12-order-summary-component-thymeleaf/src/input.css @@ -0,0 +1,3 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; diff --git a/12-order-summary-component-thymeleaf/src/main/resources/templates/index.html b/12-order-summary-component-thymeleaf/src/main/resources/templates/index.html index 7c0a065..0b357e2 100644 --- a/12-order-summary-component-thymeleaf/src/main/resources/templates/index.html +++ b/12-order-summary-component-thymeleaf/src/main/resources/templates/index.html @@ -5,7 +5,8 @@ - + + Frontend Mentor | Order summary card @@ -14,7 +15,8 @@ .attribution a { color: hsl(228, 45%, 44%); } - + Order Summary diff --git a/12-order-summary-component-thymeleaf/tailwind.config.js b/12-order-summary-component-thymeleaf/tailwind.config.js new file mode 100644 index 0000000..089db9a --- /dev/null +++ b/12-order-summary-component-thymeleaf/tailwind.config.js @@ -0,0 +1,9 @@ +/** @type {import('tailwindcss').Config} */ +module.exports = { + content: ["./src/**/*.html"], + theme: { + extend: {}, + }, + plugins: [], +} +