Limit Border Size 200 (MAX) and content overflow visiblity hidden

This commit is contained in:
Rajakumardev 2020-10-07 14:19:38 +05:30
parent f05e8c7a9b
commit 86f1de9f23
2 changed files with 2 additions and 2 deletions

View File

@ -118,7 +118,7 @@ class ConfigCover extends React.Component {
<div className="d-flex flex-row"> <div className="d-flex flex-row">
<div className="input-sm"> <div className="input-sm">
<label>Size</label> <label>Size</label>
<input type="number" className="form-control " value={this.state.borderSize} onChange={(e) => this.setState({ borderSize: e.target.value })} /> <input type="number" max="200" className="form-control " value={this.state.borderSize} onChange={(e) => this.setState({ borderSize: e.target.value })} />
</div> </div>
<div className="input-sm"> <div className="input-sm">

View File

@ -8,7 +8,7 @@
width:800px; width:800px;
padding:90px; padding:90px;
border-radius:2px; border-radius:2px;
overflow-y: hidden;
} }