diff --git a/public/img/onboarding-push-notifications.svg b/public/img/onboarding-push-notifications.svg new file mode 100644 index 000000000..4c6899861 --- /dev/null +++ b/public/img/onboarding-push-notifications.svg @@ -0,0 +1,37 @@ + + + + Group 7 + Created with Sketch. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/public/views/onboarding/notifications.html b/public/views/onboarding/notifications.html index 487e7b555..b60984f48 100644 --- a/public/views/onboarding/notifications.html +++ b/public/views/onboarding/notifications.html @@ -1,16 +1,21 @@ - - -
-

+ + +
+

Push Notifications -

- - +

+
+
+

Would you like to receive push notifications about payments? - - - - +

+
+
+
+
+ + +
diff --git a/public/views/onboarding/tour.html b/public/views/onboarding/tour.html index 53ed9de5d..b6c2a5fe7 100644 --- a/public/views/onboarding/tour.html +++ b/public/views/onboarding/tour.html @@ -31,7 +31,7 @@

-
@@ -55,7 +55,7 @@

-
diff --git a/src/sass/views/onboarding/onboard-push-notifications.scss b/src/sass/views/onboarding/onboard-push-notifications.scss new file mode 100644 index 000000000..1132317e7 --- /dev/null +++ b/src/sass/views/onboarding/onboard-push-notifications.scss @@ -0,0 +1,40 @@ +#onboarding-push-notifications{ + h2{ + margin-top:2rem; + } + #cta{ + background-image: url('../img/onboarding-push-notifications.svg'); + height: 15rem; + margin-top: .75rem; + } + .cta-buttons{ + float:none; + bottom:0; + position: absolute; + width:100%; + button{ + max-width: 400px; + } + } +} + +@media (max-width: 400px){ + #onboarding-push-notifications{ + .cta-buttons{ + float:none; + bottom:0; + position: absolute; + } + } +} +@media (max-height: 540px){ + #onboarding-push-notifications{ + #cta{ + margin-bottom: 0; + } + .cta-buttons{ + float:left; + position: relative; + } + } +} \ No newline at end of file diff --git a/src/sass/views/onboarding/onboarding.scss b/src/sass/views/onboarding/onboarding.scss index c84b0e3df..4ca9842a2 100644 --- a/src/sass/views/onboarding/onboarding.scss +++ b/src/sass/views/onboarding/onboarding.scss @@ -48,9 +48,7 @@ } } button { - &.next-slide { - background: rgba(215, 215, 215, 0.10); - } + color:#fff; } } .col { @@ -67,8 +65,12 @@ .button-transparent{ background: none !important; } + .button-translucent{ + background: rgba(215, 215, 215, 0.1) + } .button-primary{ background: rgb(100, 124, 232) !important; + color:#fff; } .light-blue{ color:rgb(100, 124, 232); @@ -98,3 +100,4 @@ @import "onboard-backup-request"; @import "onboard-backup-warning"; @import "onboard-disclaimer"; +@import "onboard-push-notifications";