Fix wonky widths for notices.

feature/default_network_editable
Kevin Serrano 7 years ago
parent b4f621c980
commit 77908e1181
No known key found for this signature in database
GPG Key ID: BF999DEFC7371BA1
  1. 2
      ui/app/app.js
  2. 6
      ui/app/components/notice.js

@ -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…
Cancel
Save