From 12ea37e71e621fb91d02e16ca4e36d9a2bf692e6 Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Wed, 13 Mar 2019 22:45:49 -0700 Subject: [PATCH] Fixes: Text color on disabled buttons --- app/components/Button.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/Button.js b/app/components/Button.js index b6c596743..b6825c788 100644 --- a/app/components/Button.js +++ b/app/components/Button.js @@ -34,7 +34,7 @@ const RealButton = styled.button` &:disabled { cursor: default; pointer-events: none; - color: ${props => lighten(0.2, props.theme.buttonText)}; + color: ${props => props.theme.textTertiary}; } ${props =>