forked from M-Labs/web2019
parent
4d5dd505ae
commit
d72a295aa5
|
@ -468,10 +468,13 @@ button {
|
|||
top: 0;
|
||||
width: 100%;
|
||||
min-height: 70px;
|
||||
max-height: 350px;
|
||||
overflow-y: scroll;
|
||||
position: absolute;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
align-items: start;
|
||||
justify-content: left;
|
||||
text-align: left;
|
||||
background-color: white;
|
||||
color: black;
|
||||
flex-direction: column;
|
||||
|
@ -481,6 +484,10 @@ button {
|
|||
font-size: .65rem;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
div {
|
||||
margin: 0 0.2rem;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -703,7 +703,7 @@ class ProductCartItem extends React.PureComponent {
|
|||
|
||||
{options ? (
|
||||
<div
|
||||
style={{'display': (model.showOverlayRemove && options) ? 'flex' : 'none'}}
|
||||
style={{'display': model.showOverlayRemove ? 'flex' : 'none'}}
|
||||
className="overlayVariant">
|
||||
|
||||
<ProcessOptions
|
||||
|
|
|
@ -143,7 +143,7 @@ class Line extends Component {
|
|||
render() {
|
||||
let key = this.props.id + this.props.outvar;
|
||||
return (
|
||||
<div className="shop-switch" key={this.props.id}>
|
||||
<div className="shop-line" key={this.props.id}>
|
||||
<label htmlFor={key} className="form-label">{this.props.title}: </label>
|
||||
<input type="email" className="form-control" id={key} onChange={this.handleClick}
|
||||
value={this.state.text}/>
|
||||
|
@ -197,7 +197,6 @@ class SwitchLine extends Component {
|
|||
let key = this.props.id + this.props.outvar;
|
||||
return (
|
||||
<div className="shop-switch-line" key={this.props.id}>
|
||||
|
||||
<div className="form-check form-switch" key={key}>
|
||||
<input
|
||||
className="form-check-input"
|
||||
|
|
Loading…
Reference in New Issue