From 8a92e98b19c471824d3934ba9c81bd5514c8298c Mon Sep 17 00:00:00 2001 From: Michael Smith Date: Fri, 6 Sep 2024 03:11:25 +0000 Subject: [PATCH] fix: increase text contrast for 'create workspace' button --- site/src/pages/TemplatesPage/TemplatesPageView.tsx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/site/src/pages/TemplatesPage/TemplatesPageView.tsx b/site/src/pages/TemplatesPage/TemplatesPageView.tsx index 591c3971b7e7c..600fdb21488c3 100644 --- a/site/src/pages/TemplatesPage/TemplatesPageView.tsx +++ b/site/src/pages/TemplatesPage/TemplatesPageView.tsx @@ -332,9 +332,6 @@ const styles = { }), actionButton: (theme) => ({ transition: "none", - color: theme.palette.text.secondary, - "&:hover": { - borderColor: theme.palette.text.primary, - }, + color: theme.palette.text.primary, }), } satisfies Record>;