From 6b7d9644e9c0edef0bc5b79504ce0d05bdbdf759 Mon Sep 17 00:00:00 2001 From: Artyom Keydunov Date: Tue, 8 Oct 2019 21:11:30 -0700 Subject: [PATCH] fix: Override incorrect button color in playground --- packages/cubejs-playground/src/index.less | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/packages/cubejs-playground/src/index.less b/packages/cubejs-playground/src/index.less index f4727ca2f7a35..80951e576c4b3 100644 --- a/packages/cubejs-playground/src/index.less +++ b/packages/cubejs-playground/src/index.less @@ -20,3 +20,9 @@ border: 1px solid #eee; border-radius: 3px; } + +// Button overrides +.ant-btn-primary:focus { + background-color: #6D5AE5; + border-color: #6D5AE5; +}