Fix explorer cluster status button styling on mobile

This commit is contained in:
Justin Starry 2020-06-24 16:49:12 +08:00 committed by Justin Starry
parent ad75f08c43
commit d989cc60f6
1 changed files with 1 additions and 1 deletions

View File

@ -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}`;
}