updating download button text color to white for hover state.

This commit is contained in:
akumarsingh 2020-03-31 17:53:13 -04:00
parent edce308736
commit bcf3274559

View File

@ -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')};