From 1987296af0aec096dfbb1622505d54aa8e56ad01 Mon Sep 17 00:00:00 2001 From: Frankie Date: Wed, 8 Jun 2016 19:08:55 -0400 Subject: [PATCH] Add spacing in line items --- ui/app/css/index.css | 2 ++ ui/app/info.js | 8 ++++---- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/ui/app/css/index.css b/ui/app/css/index.css index c6624fbae..c33753888 100644 --- a/ui/app/css/index.css +++ b/ui/app/css/index.css @@ -439,5 +439,7 @@ input.large-input { font-family: 'Transat Standard', Arial; font-weight: bolder; padding-bottom: 10px; + display: inline-block; + padding-left: 5px; } diff --git a/ui/app/info.js b/ui/app/info.js index 03f00a027..b69e006d5 100644 --- a/ui/app/info.js +++ b/ui/app/info.js @@ -69,11 +69,11 @@ InfoScreen.prototype.render = function() { h('div',{ style: { - paddingLeft: '25px', + paddingLeft: '30px', }}, [ h('div', [ - h('a.info', { + h('a', { href: 'https://metamask.io/', target: '_blank', onClick(event) { this.navigateTo(event.target.href) }, @@ -81,9 +81,9 @@ InfoScreen.prototype.render = function() { h('img.icon-size', { src: manifest.icons[128] }), - h('.info',{ + h('div.info',{ style: { - display: 'inherit', + fontWeight: 800, } },'Visit our web site') ])