From bcf327455923d4b955e265555049d7ec08ffc185 Mon Sep 17 00:00:00 2001 From: akumarsingh Date: Tue, 31 Mar 2020 17:53:13 -0400 Subject: [PATCH] updating download button text color to white for hover state. --- src/components/ApiInfo/styled.elements.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/components/ApiInfo/styled.elements.ts b/src/components/ApiInfo/styled.elements.ts index 78edf5a3..8b1fd5ba 100644 --- a/src/components/ApiInfo/styled.elements.ts +++ b/src/components/ApiInfo/styled.elements.ts @@ -35,10 +35,12 @@ export const DownloadButton = styled.a` cursor: pointer; background: #0084CE; &:hover { - background: #339DD8;; + background: #339DD8; + color: #FFFFFF; } &:active { - background: #00639B;; + background: #00639B; + color: #FFFFFF; } ${extensionsHook('DownloadButton')};