Skip to content

Commit b89d044

Browse files
authored
fix: button text "Show all" in column menu is truncated (#2208)
1 parent 14be686 commit b89d044

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

src/components/Button/Button.scss

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
text-decoration: none;
1818
text-align: center;
1919
border-radius: 5px;
20-
min-width: 110px;
2120
font-size: 14px;
2221

2322
color: $blue;

src/components/ColumnsConfiguration/ColumnsConfiguration.react.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -112,13 +112,11 @@ export default class ColumnsConfiguration extends React.Component {
112112
<div className={styles.footer}>
113113
<Button
114114
color='white'
115-
value='Hide All'
116-
width='85px'
115+
value='Hide all'
117116
onClick={this.hideAll.bind(this)} />
118117
<Button
119118
color='white'
120119
value='Show all'
121-
width='85px'
122120
onClick={this.showAll.bind(this)} />
123121
</div>
124122
</div>

0 commit comments

Comments
 (0)