Skip to content

Commit 1b04895

Browse files
committed
#RI-4934 - [FE] Add more information to the provider selection step
1 parent 4781480 commit 1b04895

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

redisinsight/ui/src/components/oauth/oauth-select-plan/OAuthSelectPlan.tsx

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -158,12 +158,13 @@ const OAuthSelectPlan = () => {
158158
<EuiModal className={styles.container} onClose={handleOnClose} data-testid="oauth-select-plan-dialog">
159159
<EuiModalBody className={styles.modalBody}>
160160
<section className={styles.content}>
161-
<EuiText className={styles.subTitle}>
162-
Redis Enterprise Cloud
163-
</EuiText>
164161
<EuiTitle size="s">
165-
<h2 className={styles.title}>Select cloud vendor</h2>
162+
<h2 className={styles.title}>Choose a cloud vendor</h2>
166163
</EuiTitle>
164+
<EuiText className={styles.subTitle}>
165+
Select a cloud vendor and region to complete the final step towards
166+
your free Redis database. No credit card is required.
167+
</EuiText>
167168
<section className={styles.providers}>
168169
{ OAuthProviders.map(({ icon, id, label }) => (
169170
<div className={styles.provider} key={id}>

redisinsight/ui/src/components/oauth/oauth-select-plan/styles.module.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
.title {
99
font-size: 28px !important;
1010
color: var(--htmlColor) !important;
11+
padding-top: 16px;
1112
}
1213

1314
.subTitle {
14-
padding-top: 24px;
15-
padding-bottom: 8px;
15+
padding: 24px 40px 0;
1616
font-size: 14px !important;
1717
}
1818

0 commit comments

Comments
 (0)