Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

This file was deleted.

This file was deleted.

This file was deleted.

2 changes: 0 additions & 2 deletions redisinsight/ui/src/components/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ import GlobalSubscriptions from './global-subscriptions'
import MonitorWrapper from './monitor'
import PagePlaceholder from './page-placeholder'
import BulkActionsConfig from './bulk-actions-config'
import ImportDatabasesDialog from './import-databases-dialog'
import OnboardingTour from './onboarding-tour'
import CodeBlock from './code-block'
import ShowChildByCondition from './show-child-by-condition'
Expand Down Expand Up @@ -67,7 +66,6 @@ export {
ShortcutsFlyout,
PagePlaceholder,
BulkActionsConfig,
ImportDatabasesDialog,
OnboardingTour,
CodeBlock,
ShowChildByCondition,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { useState } from 'react'
import { EuiButton, EuiText } from '@elastic/eui'
import { EuiButton, EuiSpacer, EuiText, EuiTitle } from '@elastic/eui'
import { useDispatch, useSelector } from 'react-redux'
import { useHistory } from 'react-router-dom'
import { find } from 'lodash'
Expand Down Expand Up @@ -108,11 +108,15 @@ const OAuthAutodiscovery = (props: Props) => {
{(form: React.ReactNode) => (
<>
<EuiText className={styles.text} color="subdued">
Auto-discover subscriptions and add your databases.
<br />
Discover subscriptions and add your databases.
A new Redis Cloud account will be created for you if you don’t have one.
</EuiText>
<EuiSpacer size="xl" />
<EuiText>Get started with</EuiText>
<EuiTitle className={styles.title} size="l"><h3>Redis Cloud account</h3></EuiTitle>
<EuiSpacer size="xl" />
{form}
<EuiSpacer size="xxl" />
<div className={styles.containerAgreement}>
<OAuthAgreement size="s" />
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@
flex-direction: column;
align-items: center;

background-color: var(--euiColorLightestShade);
padding: 16px;
border-radius: 4px;

.buttonsContainer {
.button {
margin: 0 10px;
Expand Down Expand Up @@ -35,26 +31,30 @@
}
}

.title,
.title {
font-size: 28px;
font-weight: 700 !important;
}

.text {
text-align: center;
font-size: 14px !important;
font-style: normal;
font-weight: 400 !important;
line-height: 150% !important;
color: var(--htmlColor) !important;
}

.text {
font-size: 12px !important;
font-size: 13px !important;
padding-bottom: 16px;
align-self: flex-start;
}

.containerAgreement {
margin-top: 16px;
text-align: left;
}

:global(.euiCheckbox .euiCheckbox__input ~ .euiCheckbox__label) {
line-height: 18px !important;
font-size: 12px !important;
}
}
}

.withAdvantagesWrapper {
Expand Down
Loading
Loading