diff --git a/package-lock.json b/package-lock.json index 6675285..5def8aa 100644 --- a/package-lock.json +++ b/package-lock.json @@ -12211,9 +12211,9 @@ } }, "variadic.js": { - "version": "0.0.23", - "resolved": "https://registry.npmjs.org/variadic.js/-/variadic.js-0.0.23.tgz", - "integrity": "sha1-EtSLorw7dN6/Kr49c5x7hfqslh0=" + "version": "0.0.25", + "resolved": "https://registry.npmjs.org/variadic.js/-/variadic.js-0.0.25.tgz", + "integrity": "sha1-4OsRJOS30/ktcAJr08xtaMmuPOI=" }, "vary": { "version": "1.1.2", diff --git a/src/components/FuncCard.css b/src/components/FuncCard.css index f76b06f..2f3fede 100644 --- a/src/components/FuncCard.css +++ b/src/components/FuncCard.css @@ -5,11 +5,6 @@ box-shadow: 0 0 5px 1px grey; } -.text-field { - max-width: 35px; - margin: 10px; -} - .button { width: 40%; padding: 0; @@ -17,7 +12,8 @@ } .carousel { - height: 500px; + height: 600px; + margin-top: -60px; } .p-style { diff --git a/src/components/FuncParams.js b/src/components/FuncParams.js index 00a1c13..7beb5ac 100644 --- a/src/components/FuncParams.js +++ b/src/components/FuncParams.js @@ -35,13 +35,13 @@ class FuncParams extends Component { id={`${funcName}-input`} type="number" step="0.01" - placeholder="Enter number and hit RETURN" - error={error} + label="Enter number and hit RETURN" onChange={this.handleInputChange} /> +

{error}

); } } -export default FuncParams; \ No newline at end of file +export default FuncParams;