From 161af0e198d98fa4855c8846924e37ae756923d0 Mon Sep 17 00:00:00 2001 From: Sriram Viswanathan Date: Wed, 5 Apr 2017 12:08:00 -0300 Subject: [#938] Fixes styling of title & button on backup-account step --- web-ui/src/common/link_button/link_button.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'web-ui/src/common/link_button/link_button.scss') diff --git a/web-ui/src/common/link_button/link_button.scss b/web-ui/src/common/link_button/link_button.scss index 9318e08e..ccea5523 100644 --- a/web-ui/src/common/link_button/link_button.scss +++ b/web-ui/src/common/link_button/link_button.scss @@ -17,5 +17,5 @@ .link-button > div { margin-top: 2em; - border: 1px solid #ff9c00; + border: 2px solid #ff9c00; } -- cgit v1.2.3 From 1635fca0ddf659f43ce5185b144cad215117c0c9 Mon Sep 17 00:00:00 2001 From: Sriram Viswanathan Date: Wed, 5 Apr 2017 14:16:52 -0300 Subject: [#938] Replaces RaisedButton with FlatButton for backup-account link with @anikarni --- web-ui/src/common/link_button/link_button.scss | 32 ++++++++++++++++++++++++-- 1 file changed, 30 insertions(+), 2 deletions(-) (limited to 'web-ui/src/common/link_button/link_button.scss') diff --git a/web-ui/src/common/link_button/link_button.scss b/web-ui/src/common/link_button/link_button.scss index ccea5523..3b4a534c 100644 --- a/web-ui/src/common/link_button/link_button.scss +++ b/web-ui/src/common/link_button/link_button.scss @@ -15,7 +15,35 @@ * along with Pixelated. If not, see . */ -.link-button > div { +@import "~scss/base/colors"; + +.link-button > a { + width: 100%; +} + +.link-button { + width: 100%; margin-top: 2em; - border: 2px solid #ff9c00; + border: 2px solid $light_orange; + border-radius: 2px; + font-size: 1em; + color: $light_orange; + &:hover { + color: $white; + } +} + +@media only screen and (min-width : 500px) { + .link-button { + width: 70%; + align-self: center; + } +} + +@media only screen and (min-width : 960px) { + .link-button { + width: 300px; + margin-bottom: 1em; + font-size: 0.8em; + } } -- cgit v1.2.3