Make font consistent on run-monkey

This commit is contained in:
Itay Mizeretz 2017-10-17 11:08:52 +03:00
parent 9cbe35cddd
commit 085f0d2d69
1 changed files with 6 additions and 6 deletions

View File

@ -137,7 +137,7 @@ class RunMonkeyPageComponent extends React.Component {
return ( return (
<Col xs={12} lg={8}> <Col xs={12} lg={8}>
<h1 className="page-title">Run the Monkey</h1> <h1 className="page-title">Run the Monkey</h1>
<p style={{'fontSize': '1.2em', 'marginBottom': '2em'}}> <p style={{'marginBottom': '2em', 'fontSize': '1.2em'}}>
Go ahead and run the monkey! Go ahead and run the monkey!
</p> </p>
<p> <p>
@ -170,9 +170,9 @@ class RunMonkeyPageComponent extends React.Component {
</button> </button>
</p> </p>
<Collapse in={this.state.showManual}> <Collapse in={this.state.showManual}>
<div> <div style={{'marginBottom': '2em'}}>
<p> <p style={{'fontSize': '1.2em'}}>
Choose the operating system you want to run the monkey on, and the interface to communicate with Choose the operating system you want to run the monkey on, and the interface to communicate with.
</p> </p>
<Nav bsStyle="pills" justified activeKey={this.state.selectedOs} onSelect={this.setSelectedOs}> <Nav bsStyle="pills" justified activeKey={this.state.selectedOs} onSelect={this.setSelectedOs}>
<NavItem key='windows-32' eventKey='windows-32'>Windows (32 bit)</NavItem> <NavItem key='windows-32' eventKey='windows-32'>Windows (32 bit)</NavItem>
@ -184,8 +184,8 @@ class RunMonkeyPageComponent extends React.Component {
style={{'marginBottom': '2em'}}> style={{'marginBottom': '2em'}}>
{this.state.ips.map(ip => <NavItem key={ip} eventKey={ip}>{ip}</NavItem>)} {this.state.ips.map(ip => <NavItem key={ip} eventKey={ip}>{ip}</NavItem>)}
</Nav> </Nav>
<p> <p style={{'fontSize': '1.2em'}}>
Copy the following command to your machine and run it as Administrator/root Copy the following command to your machine and run it as Administrator/root.
</p> </p>
{this.generateCmdDiv()} {this.generateCmdDiv()}
</div> </div>