From 0d6056633d97517766557184aff7e2a7bc1adcff Mon Sep 17 00:00:00 2001 From: Michael Smith Date: Fri, 6 Sep 2024 12:15:53 -0500 Subject: [PATCH] fix: increase text contrast for 'create workspace' button (#14588) --- 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 591c3971b7..600fdb2148 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>;