diff options
author | Dan Finlay <dan@danfinlay.com> | 2016-12-17 05:40:32 +0800 |
---|---|---|
committer | Dan Finlay <dan@danfinlay.com> | 2016-12-17 05:40:32 +0800 |
commit | a5024aa372c34964a46810b112667ec6a8e389f1 (patch) | |
tree | 5f829d608c3c82c7d7242359eca5e5dd0fac599b | |
parent | 8d0f4c27991bb042562913a514054396abf4f917 (diff) | |
download | tangerine-wallet-browser-a5024aa372c34964a46810b112667ec6a8e389f1.tar tangerine-wallet-browser-a5024aa372c34964a46810b112667ec6a8e389f1.tar.gz tangerine-wallet-browser-a5024aa372c34964a46810b112667ec6a8e389f1.tar.bz2 tangerine-wallet-browser-a5024aa372c34964a46810b112667ec6a8e389f1.tar.lz tangerine-wallet-browser-a5024aa372c34964a46810b112667ec6a8e389f1.tar.xz tangerine-wallet-browser-a5024aa372c34964a46810b112667ec6a8e389f1.tar.zst tangerine-wallet-browser-a5024aa372c34964a46810b112667ec6a8e389f1.zip |
Clean up first notice
Remove redundant title from notice component.
Make link color the same orange as the rest of the UI.
-rw-r--r-- | notices/notice_0.md | 1 | ||||
-rw-r--r-- | ui/app/notice.js | 3 |
2 files changed, 2 insertions, 2 deletions
diff --git a/notices/notice_0.md b/notices/notice_0.md index e68bcc5c8..1b2d5d018 100644 --- a/notices/notice_0.md +++ b/notices/notice_0.md @@ -7,5 +7,6 @@ Please use the new Ropsten Network as your new default test network. You can fund your Ropsten account using the buy button on your account page. Best wishes! + The MetaMask Team diff --git a/ui/app/notice.js b/ui/app/notice.js index 0b59ebef8..3c2c746f2 100644 --- a/ui/app/notice.js +++ b/ui/app/notice.js @@ -76,7 +76,7 @@ Notice.prototype.render = function () { } .markdown a { - color: blue; + color: #df6b0e; } `), @@ -91,7 +91,6 @@ Notice.prototype.render = function () { scroll: 'auto', }, }, [ - `${props.lastUnreadNotice.title}`, h(ReactMarkdown, { source: props.lastUnreadNotice.body, skipHtml: true, |