From ebccd54101f4ead3d2cdeb8a6801b1adf824a079 Mon Sep 17 00:00:00 2001 From: James Ritchie Date: Wed, 3 Jul 2024 12:08:05 +0100 Subject: [PATCH] Better default tooltip style --- apps/webapp/app/components/primitives/Tooltip.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/webapp/app/components/primitives/Tooltip.tsx b/apps/webapp/app/components/primitives/Tooltip.tsx index 19d893bc9..7cb04e752 100644 --- a/apps/webapp/app/components/primitives/Tooltip.tsx +++ b/apps/webapp/app/components/primitives/Tooltip.tsx @@ -5,7 +5,7 @@ import { InformationCircleIcon } from "@heroicons/react/20/solid"; const variantClasses = { basic: - "bg-background-dimmed border border-charcoal-700 rounded-md px-3 py-1.5 text-sm text-text-bright shadow-md fade-in-50", + "bg-background-bright border border-grid-bright rounded px-3 py-2 text-sm text-text-bright shadow-md fade-in-50", dark: "bg-background-dimmed border border-grid-bright rounded px-3 py-2 text-sm text-text-bright shadow-md fade-in-50", };