Improve background color contrast

This commit is contained in:
Justin Starry
2020-06-02 17:27:27 +08:00
committed by Michael Vines
parent 9b602edc7a
commit 16b0ee0a21
3 changed files with 16 additions and 3 deletions

View File

@@ -21,9 +21,9 @@ function Button({ expand }: { expand?: boolean }) {
const btnClasses = (variant: string) => {
if (expand) {
return `btn lift d-block btn-${variant}`;
return `btn b-white lift d-block btn-${variant}`;
} else {
return `btn lift btn-outline-${variant}`;
return `btn b-white lift btn-outline-${variant}`;
}
};