fix(issue21): Increases crate height (thus card height)

pull/49/head
sovanna 2020-03-02 22:36:02 +09:00
parent 06d9939ddb
commit c4b1a07530
2 changed files with 5 additions and 3 deletions

View File

@ -292,7 +292,8 @@ button {
> div { > div {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
max-width: 96px; /*max-width: 96px;*/
max-width: 121px;
justify-content: flex-start; justify-content: flex-start;
align-content: center; align-content: center;
align-items: center; align-items: center;
@ -308,7 +309,8 @@ button {
} }
img { img {
height: 250px; /*height: 250px;*/
height: 320px;
border: 0; border: 0;
flex-shrink: 0; flex-shrink: 0;
} }

View File

@ -469,7 +469,7 @@ class ProductCartItem extends React.PureComponent {
<h6>{model.name_number}</h6> <h6>{model.name_number}</h6>
<div <div
style={{'height': '250px'}} style={{'height': '320px'}}
onMouseEnter={this.handleOnMouseEnterRemoveItem.bind(this, index)} onMouseEnter={this.handleOnMouseEnterRemoveItem.bind(this, index)}
> >