From 5fc3a48e09ac884281ef8f43021c1e5c863b3689 Mon Sep 17 00:00:00 2001 From: Liam Cardenas Date: Fri, 22 Dec 2017 15:23:22 -0800 Subject: [PATCH] Added styling to verification page --- view/template/acquisition/verify.php | 19 +++++++++++-------- web/scss/_code.scss | 12 ++++++++---- 2 files changed, 19 insertions(+), 12 deletions(-) diff --git a/view/template/acquisition/verify.php b/view/template/acquisition/verify.php index fd19b6ad..b5a799e6 100644 --- a/view/template/acquisition/verify.php +++ b/view/template/acquisition/verify.php @@ -24,14 +24,17 @@ -

Almost Done!

-

Click the captcha to continue...

-
-
-

Now click the magic link below to verify your identity in app...

- -

Does the magic link not work? Not on the same device as the app? Paste this text into the verification screen instead.

-
Copied!
+
+ LBRY +

Almost Done!

+

Click the captcha to continue...

+
+
diff --git a/web/scss/_code.scss b/web/scss/_code.scss index bf2c20eb..aabc2d07 100644 --- a/web/scss/_code.scss +++ b/web/scss/_code.scss @@ -30,7 +30,7 @@ pre overflow-x: auto; } -.code-bash +.multiline-code { -webkit-user-select: text; -moz-user-select: text; @@ -47,10 +47,14 @@ pre display: block; word-wrap: break-word; + font-size: 0.75em; +} + +.code-bash +{ + @extend .multiline-code; background: #222; color: #fff; - - font-size: 0.75em; } .code-bash__response { @@ -65,4 +69,4 @@ pre margin-right: 5px; color: lighten($color-primary, 20%); @include user-select(none); -} \ No newline at end of file +}