1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Fix wonky widths for notices.

This commit is contained in:
Kevin Serrano 2017-08-03 16:30:57 -07:00
parent b4f621c980
commit 77908e1181
No known key found for this signature in database
GPG Key ID: BF999DEFC7371BA1
2 changed files with 6 additions and 2 deletions

View File

@ -92,7 +92,7 @@ App.prototype.render = function () {
// panel content // panel content
h('.app-primary' + (transForward ? '.from-right' : '.from-left'), { h('.app-primary' + (transForward ? '.from-right' : '.from-left'), {
style: { style: {
maxWidth: '850px', width: '100%',
}, },
}, [ }, [
this.renderPrimary(), this.renderPrimary(),

View File

@ -19,7 +19,11 @@ Notice.prototype.render = function () {
const disabled = state.disclaimerDisabled const disabled = state.disclaimerDisabled
return ( return (
h('.flex-column.flex-center.flex-grow', [ h('.flex-column.flex-center.flex-grow', {
style: {
width: '100%',
},
}, [
h('h3.flex-center.text-transform-uppercase.terms-header', { h('h3.flex-center.text-transform-uppercase.terms-header', {
style: { style: {
background: '#EBEBEB', background: '#EBEBEB',