Skip to content

Commit

Permalink
fix flex box layout
Browse files Browse the repository at this point in the history
  • Loading branch information
HieronymusLex committed Dec 19, 2020
1 parent 1459c57 commit f5be63b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"scripts": {
"build": "webpack --mode production"
},
"version": "0.1.1",
"version": "0.1.2",
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
Expand Down
2 changes: 1 addition & 1 deletion src/HandMatrix.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ const ComboRow = React.memo(
{row.map((combo, j) => (
<div
className="hand-matrix-cell"
style={{ flexGrow: 1 }}
style={{ flex: "1 1 0px" }}
onClick={() => onClick && onClick(combo)}
onMouseUp={() => onMouseUp && onMouseUp(combo)}
onMouseDown={() => onMouseDown && onMouseDown(combo)}
Expand Down

0 comments on commit f5be63b

Please sign in to comment.