diff options
Added some basic styles
Diffstat (limited to 'ui/app/first-time')
-rw-r--r-- | ui/app/first-time/disclaimer.js | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/ui/app/first-time/disclaimer.js b/ui/app/first-time/disclaimer.js index 929624814..f25bf9245 100644 --- a/ui/app/first-time/disclaimer.js +++ b/ui/app/first-time/disclaimer.js @@ -35,7 +35,20 @@ DisclaimerScreen.prototype.render = function () { 'MetaMask Terms & Conditions', ]), - h('div', { + h('style', ` + + .markdown { + font-family: Times New Roman; + } + .markdown h1,h2,h3,h4 { + margin: 10px 0; + font-family: arial sans-serif; + font-weight: bold; + } + + `), + + h('div.markdown', { style: { // whiteSpace: 'pre-line', background: 'rgb(235, 235, 235)', |