forked from M-Labs/web2019
fix(issue21): Increases crate height (thus card height)
This commit is contained in:
parent
06d9939ddb
commit
c4b1a07530
|
@ -292,7 +292,8 @@ button {
|
|||
> div {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
max-width: 96px;
|
||||
/*max-width: 96px;*/
|
||||
max-width: 121px;
|
||||
justify-content: flex-start;
|
||||
align-content: center;
|
||||
align-items: center;
|
||||
|
@ -308,7 +309,8 @@ button {
|
|||
}
|
||||
|
||||
img {
|
||||
height: 250px;
|
||||
/*height: 250px;*/
|
||||
height: 320px;
|
||||
border: 0;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
|
|
@ -469,7 +469,7 @@ class ProductCartItem extends React.PureComponent {
|
|||
<h6>{model.name_number}</h6>
|
||||
|
||||
<div
|
||||
style={{'height': '250px'}}
|
||||
style={{'height': '320px'}}
|
||||
onMouseEnter={this.handleOnMouseEnterRemoveItem.bind(this, index)}
|
||||
>
|
||||
|
||||
|
|
Loading…
Reference in New Issue