Skip to content

Commit 539bf13

Browse files
authored
fix(Toolbar): icon button color with recent Blueprint version (#936)
Closes: #935
1 parent d14a5b7 commit 539bf13

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/components/toolbar/Toolbar.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,8 @@ const border = '1px solid rgb(247, 247, 247)';
6060

6161
const ToolbarButton = styled(Button)`
6262
.${Classes.ICON} {
63-
color: ${Colors.DARK_GRAY3};
63+
/* Color of icon in button is lighter in Blueprintjs. We want a better contrast in the toolbars */
64+
color: ${Colors.DARK_GRAY3} !important;
6465
width: 16px;
6566
height: 16px;
6667
font-size: 12px;

0 commit comments

Comments
 (0)