File tree Expand file tree Collapse file tree 3 files changed +41
-5
lines changed Expand file tree Collapse file tree 3 files changed +41
-5
lines changed Original file line number Diff line number Diff line change 1+ @import ' @influxdata/clockface/dist/variables.scss' ;
2+
3+ .logo-with-cubo {
4+ display : flex ;
5+
6+ > .cubo-logo {
7+ font-size : $cf-text-base-4 ;
8+ padding-right : $cf-space-2xs ;
9+ color : #fff ;
10+ line-height : 1.5 ;
11+ }
12+ > .influx-cloud-logo {
13+ width : 150px ;
14+ height : 50px ;
15+ display : flex ;
16+ }
17+ }
Original file line number Diff line number Diff line change 1+ import {
2+ Icon ,
3+ IconFont ,
4+ InfluxColors ,
5+ InfluxDBCloudLogo ,
6+ } from '@influxdata/clockface'
7+ import React , { FC } from 'react'
8+
9+ import './CloudLogoWithCubo.scss'
10+
11+ const CloudLogoWithCubo : FC = ( ) => (
12+ < div className = "logo-with-cubo" >
13+ < Icon glyph = { IconFont . CuboSolid } className = "cubo-logo" />
14+ < InfluxDBCloudLogo
15+ fill = { InfluxColors . White }
16+ cloud = { true }
17+ className = "influx-cloud-logo"
18+ />
19+ </ div >
20+ )
21+
22+ export { CloudLogoWithCubo }
Original file line number Diff line number Diff line change @@ -6,11 +6,11 @@ import {
66 FunnelPage ,
77 Heading ,
88 HeadingElement ,
9- InfluxDBCloudLogo ,
109 Typeface ,
1110} from '@influxdata/clockface'
1211import { useHistory } from 'react-router-dom'
1312import Notifications from 'src/shared/components/notifications/Notifications'
13+ import { CloudLogoWithCubo } from 'src/onboarding/components/CloudLogoWithCubo'
1414
1515// Types
1616import { getMe } from 'src/client'
@@ -58,10 +58,7 @@ export const LoginPage: FC = () => {
5858 < ErrorBoundary >
5959 < AppWrapper >
6060 < Notifications />
61- < FunnelPage
62- enableGraphic = { true }
63- logo = { < InfluxDBCloudLogo cloud = { true } className = "login-page--logo" /> }
64- >
61+ < FunnelPage enableGraphic = { true } logo = { < CloudLogoWithCubo /> } >
6562 < Heading
6663 element = { HeadingElement . H1 }
6764 type = { Typeface . Rubik }
You can’t perform that action at this time.
0 commit comments