diff --git a/app/assets/stylesheets/preact/onboarding-modal.scss b/app/assets/stylesheets/preact/onboarding-modal.scss
index 6c34e4cbe..c3761fec2 100644
--- a/app/assets/stylesheets/preact/onboarding-modal.scss
+++ b/app/assets/stylesheets/preact/onboarding-modal.scss
@@ -45,6 +45,10 @@
}
}
+.toggle-bottom {
+ padding-bottom: 0px;
+}
+
// terms and conditions view
.terms-and-conditions-wrapper {
$content-height: 358px;
@@ -149,12 +153,29 @@
align-self: flex-end;
flex-shrink: 0;
width: 100%;
- border-top: 2px solid var(--box-darker);
+ line-height: 100%;
+ height: 80px;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
.selection-status-content {
display: block;
- padding: $su-4;
text-align: center;
+
+ p {
+ font-size: $su-4;
+ font-weight: $fw-bold;
+ line-height: $lh-base;
+ }
+
+ button {
+ background: none;
+ border: none;
+ padding: 0px;
+ color: var(--accent-brand);
+ font-size: $fs-s;
+ }
}
}
@@ -169,6 +190,7 @@
.onboarding-modal-scroll-container {
height: auto;
min-height: 436px;
+ border-bottom: 1px solid var(--base-20);
@media screen and (min-width: $breakpoint-s) {
max-height: 500px;
overflow-y: scroll;
diff --git a/app/javascript/onboarding/__tests__/Onboarding.test.jsx b/app/javascript/onboarding/__tests__/Onboarding.test.jsx
index 381cccdb2..83e243493 100644
--- a/app/javascript/onboarding/__tests__/Onboarding.test.jsx
+++ b/app/javascript/onboarding/__tests__/Onboarding.test.jsx
@@ -299,12 +299,33 @@ describe('
You're not following anyone
{this.userFollowCountMessage()}
+ {this.renderFollowToggle()}