fix(ui): removed more dead code (#17318)

pull/17336/head
Ariel Salem 2020-03-17 14:43:39 -07:00 committed by GitHub
parent e81d764fe6
commit 8a027bccca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 28 deletions

View File

@ -63,12 +63,6 @@
height: 100%;
}
.sign-up--subheader {
padding: 24px;
text-align: center;
color: $g20-white;
}
.sign-up--page-contents {
text-align: center;
.cf-page-contents--padding {
@ -82,16 +76,6 @@
.sign-up--form-panel {
max-width: 100%;
}
.sign-up--full-height {
min-height: 100%;
}
.sign-up--panel {
height: 80vh;
padding: 64px;
max-height: 800px;
}
}
.sign-up--social-button-group {

View File

@ -1,6 +1,6 @@
// Libraries
import React, {FC} from 'react'
import {AppWrapper, Columns, Grid, Page} from '@influxdata/clockface'
import {AppWrapper, Page} from '@influxdata/clockface'
// Components
import ErrorBoundary from 'src/shared/components/ErrorBoundary'
@ -20,17 +20,6 @@ export const LoginPage: FC = () => (
</h2>
<h5 className="cf-funnel-page--subtitle">No credit card required</h5>
<LoginPageContents />
<Grid>
<Grid.Row className="sign-up--full-height">
<Grid.Column
widthXS={Columns.Twelve}
widthMD={Columns.Five}
offsetMD={Columns.Four}
widthLG={Columns.Four}
className="sign-up--full-height"
/>
</Grid.Row>
</Grid>
</Page.Contents>
</Page>
</AppWrapper>