aboutsummaryrefslogtreecommitdiffstats
path: root/apps/kit/tailwind.config.cjs
diff options
context:
space:
mode:
authorivarlovlie <git@ivarlovlie.no>2022-09-25 12:01:37 +0200
committerivarlovlie <git@ivarlovlie.no>2022-09-25 12:01:37 +0200
commit2a9e668dceda855f8302e2ca9f81ebd6f0e7b5c1 (patch)
tree13f7a597c2e31210e722388de8aabf0d43ba5326 /apps/kit/tailwind.config.cjs
parent9f65b9e65ead6cc6b8ce5cfcf650b49fe134cd91 (diff)
downloadgreatoffice-2a9e668dceda855f8302e2ca9f81ebd6f0e7b5c1.tar.xz
greatoffice-2a9e668dceda855f8302e2ca9f81ebd6f0e7b5c1.zip
feat: Safelist all classes needed for alerts
Diffstat (limited to 'apps/kit/tailwind.config.cjs')
-rw-r--r--apps/kit/tailwind.config.cjs38
1 files changed, 38 insertions, 0 deletions
diff --git a/apps/kit/tailwind.config.cjs b/apps/kit/tailwind.config.cjs
index a81035a..65b523e 100644
--- a/apps/kit/tailwind.config.cjs
+++ b/apps/kit/tailwind.config.cjs
@@ -8,6 +8,44 @@ const config = {
plugins: [
require("@tailwindcss/forms")
],
+ safelist: [
+ "bg-blue-50",
+ "bg-yellow-50",
+ "bg-red-50",
+ "bg-green-50",
+ "text-blue-400",
+ "text-yellow-400",
+ "text-red-400",
+ "text-green-400",
+ "text-blue-800",
+ "text-yellow-800",
+ "text-red-800",
+ "text-green-800",
+ "text-blue-700",
+ "text-yellow-700",
+ "text-red-700",
+ "text-green-700",
+ "text-blue-500",
+ "text-yellow-500",
+ "text-red-500",
+ "text-green-500",
+ "hover:text-blue-600",
+ "hover:text-yellow-600",
+ "hover:text-red-600",
+ "hover:text-green-600",
+ "hover:bg-blue-100",
+ "hover:bg-yellow-100",
+ "hover:bg-red-100",
+ "hover:bg-green-100",
+ "focus:ring-blue-600",
+ "focus:ring-yellow-600",
+ "focus:ring-red-600",
+ "focus:ring-green-600",
+ "focus:ring-offset-blue-50",
+ "focus:ring-offset-yellow-50",
+ "focus:ring-offset-red-50",
+ "focus:ring-offset-green-50",
+ ]
};
module.exports = config;