forked from p34709852/monkey
Fix the Guardicore logo which is overlaping the landing page buttons on smaller screens
This commit is contained in:
parent
0ecbfdea38
commit
4dbd7b41f5
|
@ -20,16 +20,16 @@ const LandingPageComponent = (props) => {
|
||||||
<Col sm={{offset: 1, span: 10}} md={{offset: 1, span: 10}}
|
<Col sm={{offset: 1, span: 10}} md={{offset: 1, span: 10}}
|
||||||
lg={{offset: 2, span: 8}} xl={{offset: 3, span: 6}}
|
lg={{offset: 2, span: 8}} xl={{offset: 3, span: 6}}
|
||||||
className={'landing-page'}>
|
className={'landing-page'}>
|
||||||
<MonkeyBanner />
|
<MonkeyBanner/>
|
||||||
<div className={'scenario-header'}>
|
<div className={'scenario-header'}>
|
||||||
<ScenarioButtons/>
|
<ScenarioButtons/>
|
||||||
<br/>
|
<br/>
|
||||||
</div>
|
|
||||||
<br/>
|
|
||||||
<br/>
|
|
||||||
<Col className={'guardicore-logo'}>
|
<Col className={'guardicore-logo'}>
|
||||||
<Logo/>
|
<Logo/>
|
||||||
</Col>
|
</Col>
|
||||||
|
</div>
|
||||||
|
<br/>
|
||||||
|
<br/>
|
||||||
</Col>
|
</Col>
|
||||||
|
|
||||||
</>
|
</>
|
||||||
|
@ -95,7 +95,8 @@ function ScenarioInfo() {
|
||||||
<>
|
<>
|
||||||
<div className={'scenario-info'}>
|
<div className={'scenario-info'}>
|
||||||
Check the Infection Monkey documentation hub for more information
|
Check the Infection Monkey documentation hub for more information
|
||||||
on <a href='https://www.guardicore.com/infectionmonkey/docs/usage/scenarios/' rel="noopener noreferrer" target="_blank">
|
on <a href='https://www.guardicore.com/infectionmonkey/docs/usage/scenarios/' rel="noopener noreferrer"
|
||||||
|
target="_blank">
|
||||||
scenarios
|
scenarios
|
||||||
</a>.
|
</a>.
|
||||||
</div>
|
</div>
|
||||||
|
@ -106,8 +107,8 @@ function ScenarioInfo() {
|
||||||
function MonkeyBanner(props) {
|
function MonkeyBanner(props) {
|
||||||
return (
|
return (
|
||||||
<div className={'landing-page-banner'}>
|
<div className={'landing-page-banner'}>
|
||||||
<img className={'landing-banner-component landing-banner-monkey-icon'} src={monkeyIcon} />
|
<img className={'landing-banner-component landing-banner-monkey-icon'} src={monkeyIcon}/>
|
||||||
<img className={'landing-banner-component landing-banner-title'} src={infectionMonkey} />
|
<img className={'landing-banner-component landing-banner-title'} src={infectionMonkey}/>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
.landing-page {
|
.landing-page {
|
||||||
background-color: rgba(255, 255, 255, 0.89);
|
background-color: rgba(255, 255, 255, 0.89);
|
||||||
position: absolute !important;
|
|
||||||
height: 100%;
|
height: 100%;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
}
|
}
|
||||||
|
@ -27,12 +26,6 @@
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.landing-page .guardicore-logo {
|
|
||||||
position: absolute;
|
|
||||||
bottom: 10px;
|
|
||||||
left: 0 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.guardicore-logo .license-text {
|
.guardicore-logo .license-text {
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue