Minor UI improvements

This commit is contained in:
VakarisZ 2019-07-16 12:11:32 +03:00
parent 930ff08149
commit 1d4df39aa9
3 changed files with 10 additions and 2 deletions

View File

@ -496,7 +496,7 @@ class ConfigurePageComponent extends AuthComponent {
} }
return ( return (
<Col xs={12} lg={8}> <Col xs={12} lg={10}>
{this.renderAttackAlertModal()} {this.renderAttackAlertModal()}
<h1 className="page-title">Monkey Configuration</h1> <h1 className="page-title">Monkey Configuration</h1>
{this.renderNav()} {this.renderNav()}

View File

@ -158,7 +158,7 @@ class AttackReportPageComponent extends AuthComponent {
return ( return (
<div> <div>
{this.renderLegend()} {this.renderLegend()}
<section className="app">{content}</section> <section className="attack-report">{content}</section>
</div> </div>
) )
} }

View File

@ -525,6 +525,14 @@ body {
margin-bottom: 30px; margin-bottom: 30px;
} }
.attack-matrix {
margin-bottom: 20px;
}
.attack-report .btn-collapse span:nth-of-type(2){
flex: 0;
}
.icon-info { .icon-info {
color: #ade3eb !important; color: #ade3eb !important;
} }