Skip to content

Commit 3b1f4d5

Browse files
authored
Merge pull request #487 from PermanentOrg/PER-9760-upgrade-congrats-screen
design changes to final onboarding screen
2 parents ec042eb + 13ed117 commit 3b1f4d5

File tree

2 files changed

+36
-16
lines changed

2 files changed

+36
-16
lines changed

src/app/onboarding/components/glam/finalize-archive-creation-screen/finalize-archive-creation-screen.component.html

Lines changed: 21 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@
55
</div>
66
<div class="content-container">
77
<div>
8+
<p class="get-started-text">
9+
Get started by uploading your first files, or learn more about your new
10+
archive by
11+
<a
12+
target="_blank"
13+
href="https://permanent.zohodesk.com/portal/en/kb/permanent-legacy-foundation"
14+
>viewing our help articles here.</a
15+
>
16+
</p>
817
<div class="archive-info">
918
<div>
1019
<img
@@ -20,22 +29,20 @@
2029
</div>
2130
</div>
2231
<hr />
23-
<p class="get-started-text">
24-
Get started by uploading your first files, or learn more about your new
25-
archive by viewing our help articles through the ‘?’ button in the lower
26-
right-hand corner.
27-
</p>
2832
</div>
2933
<div class="button-container">
30-
<pr-button
31-
[orientation]="'right'"
32-
[variant]="'secondary'"
33-
[icon]="'/accept'"
34-
[size]="'fill'"
35-
[disabled]="isArchiveSubmitted"
36-
(buttonClick)="finalizeArchive()"
37-
>Done</pr-button
38-
>
34+
<div class="button">
35+
<pr-button
36+
[orientation]="'right'"
37+
[variant]="'secondary'"
38+
[icon]="'/accept'"
39+
[size]="'fill'"
40+
[disabled]="isArchiveSubmitted"
41+
(buttonClick)="finalizeArchive()"
42+
[style]="{ justifyContent: 'center' }"
43+
>Done</pr-button
44+
>
45+
</div>
3946
</div>
4047
</div>
4148
</div>

src/app/onboarding/components/glam/finalize-archive-creation-screen/finalize-archive-creation-screen.component.scss

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ p {
2828

2929
.square {
3030
border-radius: 6px;
31-
background: #a6f4c5;
31+
background: rgba(255, 255, 255, 0.08);
3232
width: 72px;
3333
padding: 6px;
3434

3535
& > span {
36-
color: rgba(19, 27, 74, 1);
36+
color: white;
3737
}
3838
}
3939

@@ -84,7 +84,20 @@ hr {
8484
}
8585

8686
.button-container {
87+
display: flex;
88+
justify-content: flex-end;
8789
@media screen and (max-width: 465px) {
8890
padding: 20px;
8991
}
9092
}
93+
94+
.button {
95+
width: 50%;
96+
}
97+
98+
.get-started-text {
99+
& > a {
100+
color: white;
101+
}
102+
margin-bottom: 2rem;
103+
}

0 commit comments

Comments
 (0)