Pages now utilize all available width
This commit is contained in:
parent
875b7cb3a1
commit
c8df03355b
|
@ -107,7 +107,7 @@ class ConfigurePageComponent extends React.Component {
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Col xs={8}>
|
<Col xs={12}>
|
||||||
<h1 className="page-title">Monkey Configuration</h1>
|
<h1 className="page-title">Monkey Configuration</h1>
|
||||||
<Nav bsStyle="tabs" justified
|
<Nav bsStyle="tabs" justified
|
||||||
activeKey={this.state.selectedSection} onSelect={this.setSelectedSection}
|
activeKey={this.state.selectedSection} onSelect={this.setSelectedSection}
|
||||||
|
|
|
@ -12,7 +12,7 @@ class ReadMePageComponent extends React.Component {
|
||||||
render() {
|
render() {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Col xs={8}>
|
<Col xs={12}>
|
||||||
<h1 className="page-title">Read Me</h1>
|
<h1 className="page-title">Read Me</h1>
|
||||||
<div dangerouslySetInnerHTML={{__html: marked(markdown)}} className="markdown-body">
|
<div dangerouslySetInnerHTML={{__html: marked(markdown)}} className="markdown-body">
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -8,7 +8,7 @@ class ReportPageComponent extends React.Component {
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
return (
|
return (
|
||||||
<Col xs={8}>
|
<Col xs={12}>
|
||||||
<h1 className="page-title">Penetration Test Report</h1>
|
<h1 className="page-title">Penetration Test Report</h1>
|
||||||
<div style={{'fontSize': '1.5em'}}>
|
<div style={{'fontSize': '1.5em'}}>
|
||||||
<p>
|
<p>
|
||||||
|
|
|
@ -121,7 +121,7 @@ class RunMonkeyPageComponent extends React.Component {
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
return (
|
return (
|
||||||
<Col xs={8}>
|
<Col xs={12}>
|
||||||
<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={{'fontSize': '1.2em', 'marginBottom': '2em'}}>
|
||||||
You can run the monkey on the C&C server, on your local machine and basically everywhere.
|
You can run the monkey on the C&C server, on your local machine and basically everywhere.
|
||||||
|
|
|
@ -16,7 +16,7 @@ class RunServerPageComponent extends React.Component {
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
return (
|
return (
|
||||||
<Col xs={8}>
|
<Col xs={12}>
|
||||||
<h1 className="page-title">Monkey Island C&C Server</h1>
|
<h1 className="page-title">Monkey Island C&C Server</h1>
|
||||||
<div style={{'fontSize': '1.5em'}}>
|
<div style={{'fontSize': '1.5em'}}>
|
||||||
<p>Your Monkey Island server is up and running on <b>{this.state.ip}</b> 👏 👏</p>
|
<p>Your Monkey Island server is up and running on <b>{this.state.ip}</b> 👏 👏</p>
|
||||||
|
|
|
@ -64,7 +64,7 @@ class StartOverPageComponent extends React.Component {
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
return (
|
return (
|
||||||
<Col xs={8}>
|
<Col xs={12}>
|
||||||
{this.renderCleanDialogModal()}
|
{this.renderCleanDialogModal()}
|
||||||
<h1 className="page-title">Start Over</h1>
|
<h1 className="page-title">Start Over</h1>
|
||||||
<div style={{'fontSize': '1.2em'}}>
|
<div style={{'fontSize': '1.2em'}}>
|
||||||
|
|
Loading…
Reference in New Issue