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}}
|
||||
lg={{offset: 2, span: 8}} xl={{offset: 3, span: 6}}
|
||||
className={'landing-page'}>
|
||||
<MonkeyBanner />
|
||||
<MonkeyBanner/>
|
||||
<div className={'scenario-header'}>
|
||||
<ScenarioButtons/>
|
||||
<br/>
|
||||
</div>
|
||||
<br/>
|
||||
<br/>
|
||||
<Col className={'guardicore-logo'}>
|
||||
<Logo/>
|
||||
</Col>
|
||||
</div>
|
||||
<br/>
|
||||
<br/>
|
||||
</Col>
|
||||
|
||||
</>
|
||||
|
@ -95,7 +95,8 @@ function ScenarioInfo() {
|
|||
<>
|
||||
<div className={'scenario-info'}>
|
||||
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
|
||||
</a>.
|
||||
</div>
|
||||
|
@ -106,8 +107,8 @@ function ScenarioInfo() {
|
|||
function MonkeyBanner(props) {
|
||||
return (
|
||||
<div className={'landing-page-banner'}>
|
||||
<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-monkey-icon'} src={monkeyIcon}/>
|
||||
<img className={'landing-banner-component landing-banner-title'} src={infectionMonkey}/>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
.landing-page {
|
||||
background-color: rgba(255, 255, 255, 0.89);
|
||||
position: absolute !important;
|
||||
height: 100%;
|
||||
bottom: 0;
|
||||
}
|
||||
|
@ -27,12 +26,6 @@
|
|||
height: 100%;
|
||||
}
|
||||
|
||||
.landing-page .guardicore-logo {
|
||||
position: absolute;
|
||||
bottom: 10px;
|
||||
left: 0 !important;
|
||||
}
|
||||
|
||||
.guardicore-logo .license-text {
|
||||
position: relative;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue