figbertmath

[RADIOACTIVE] miscellaneous math programs in website form
git clone git://git.figbert.com/figbertmath.git
Log | Files | Refs | README

commit b5fdb12de0cfad4c0d41ed559467521c9d653771
parent 830a2c1a8f761781e8bddb307c89e401f9f9fb1e
Author: therealFIGBERT <figbertwelner@gmail.com>
Date:   Sat, 23 Nov 2019 22:50:24 -0800

Add small margin between number and top border of calculator

Diffstat:
Msrc/components/calcOut.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/components/calcOut.js b/src/components/calcOut.js @@ -6,7 +6,7 @@ export class CalcOut extends React.Component { render() { return ( <div className='calc calc__out'> - <div style={{fontSize: '4vmax', marginBottom: '2vmax'}}>{this.props.output}</div> + <div style={{fontSize: '4vmax', marginTop: '0.5vmax', marginBottom: '2vmax'}}>{this.props.output}</div> <div style={{fontSize: '1.5vmax'}}>{this.props.input}</div> </div> );