From bb1ccaf4eaf50b1765e53d349dd937d39010289d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20Eduardo=20Jer=C3=A9z=20Gir=C3=B3n?= Date: Fri, 19 Jul 2024 18:31:32 -0600 Subject: [PATCH] Add Tailwind CSS configuration file --- tailwind.config.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 tailwind.config.js diff --git a/tailwind.config.js b/tailwind.config.js new file mode 100644 index 0000000..bfdb3a5 --- /dev/null +++ b/tailwind.config.js @@ -0,0 +1,16 @@ +/** @type {import('tailwindcss').Config} */ +module.exports = { + content: ['./internal/view/web/**/*.go'], + plugins: [require('daisyui')], + daisyui: { + logs: false, + themes: ["light", "dim"], + darkTheme: "dim", + }, + theme: { + screens: { + 'desk': '768px', // only one breakpoint to keep it simple + }, + extend: {}, + } +}