From 191fb0c0aa31a5142f81ea6f7fcf253b10f0297c Mon Sep 17 00:00:00 2001 From: Indrajith K L Date: Sun, 28 Aug 2022 00:41:33 +0530 Subject: * Project Restructred * Adds Tailwind * Completed Intro Page, About, Posts Listing * Changes build and development scripts --- tailwind.config.js | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 tailwind.config.js (limited to 'tailwind.config.js') diff --git a/tailwind.config.js b/tailwind.config.js new file mode 100644 index 0000000..d37100c --- /dev/null +++ b/tailwind.config.js @@ -0,0 +1,15 @@ +/** @type {import('tailwindcss').Config} */ +module.exports = { + content: ["./src/**/*.{njk,md}", "./src/**/*.svg"], + theme: { + extend: { + fontFamily: { + "supply-regular": ["supplyRegular", "sans-serif"], + "supply-light": ["supplyLight", "sans-serif"], + }, + }, + }, + plugins: [ + require('@tailwindcss/line-clamp') + ], +}; -- cgit v1.2.3