We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8624253 + 9669652 commit 27fb8f9Copy full SHA for 27fb8f9
ActionButton.js
@@ -8,6 +8,8 @@ const alignItemsMap = {
8
"right" : "flex-end"
9
}
10
11
+const shadowHeight = 12;
12
+
13
export default class ActionButton extends Component {
14
15
constructor(props) {
@@ -45,7 +47,7 @@ export default class ActionButton extends Component {
45
47
getButtonSize() {
46
48
return {
49
width: this.props.size,
- height: this.props.size,
50
+ height: this.props.size + shadowHeight,
51
52
53
0 commit comments