From ff5e2dc75893d3bf247b2e1b13a8f8abe144639c Mon Sep 17 00:00:00 2001 From: Shekar Siri Date: Fri, 28 Apr 2023 14:35:55 +0200 Subject: [PATCH] change(ui) - button text color --- frontend/app/components/ui/Button/Button.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/app/components/ui/Button/Button.tsx b/frontend/app/components/ui/Button/Button.tsx index 89bb1e459..b4c6c6b61 100644 --- a/frontend/app/components/ui/Button/Button.tsx +++ b/frontend/app/components/ui/Button/Button.tsx @@ -38,7 +38,7 @@ export default (props: Props) => { default: 'bg-white hover:bg-gray-light border border-gray-light', primary: 'bg-teal color-white hover:bg-teal-dark', green: 'bg-green color-white hover:bg-green-dark', - text: 'bg-transparent color-gray-dark hover:bg-active-blue hover:!text-teal hover-fill-teal', + text: 'bg-transparent text-black hover:bg-active-blue hover:!text-teal hover-fill-teal', 'text-primary': 'bg-transparent color-teal hover:bg-teal-light hover:color-teal-dark', 'text-red': 'bg-transparent color-red hover:bg-teal-light', outline: 'bg-white color-teal border border-teal hover:bg-teal-light',