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:
parent
b4f621c980
commit
77908e1181
@ -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(),
|
||||||
|
@ -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',
|
||||||
|
Loading…
Reference in New Issue
Block a user