From 06fbd1cc947778a7158b3bb8b8f95fe640436ebb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jozef=20Steinh=C3=BCbl?= Date: Sun, 18 Aug 2024 18:35:36 +0200 Subject: [PATCH] fix: th text align left --- tailwind.config.cjs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/tailwind.config.cjs b/tailwind.config.cjs index 243d71d..b794238 100644 --- a/tailwind.config.cjs +++ b/tailwind.config.cjs @@ -34,6 +34,15 @@ module.exports = { yellow: ["0 45px 35px rgba(250, 193, 25, 0.5)"], yellowalt: ["0 4px 12px rgba(250, 193, 25, 0.8)"], }, + typography: { + DEFAULT: { + css: { + th: { + textAlign: "left", + }, + }, + }, + }, }, }, plugins: [require("@tailwindcss/typography")],