From d989cc60f621dd503c39097e057e5416ad677b8f Mon Sep 17 00:00:00 2001 From: Justin Starry Date: Wed, 24 Jun 2020 16:49:12 +0800 Subject: [PATCH] Fix explorer cluster status button styling on mobile --- explorer/src/components/ClusterStatusButton.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/explorer/src/components/ClusterStatusButton.tsx b/explorer/src/components/ClusterStatusButton.tsx index 637a61e48c..9ed65bb587 100644 --- a/explorer/src/components/ClusterStatusButton.tsx +++ b/explorer/src/components/ClusterStatusButton.tsx @@ -21,7 +21,7 @@ function Button({ expand }: { expand?: boolean }) { const btnClasses = (variant: string) => { if (expand) { - return `btn b-white lift d-block btn-${variant}`; + return `btn lift d-block btn-${variant}`; } else { return `btn b-white lift btn-outline-${variant}`; }