Increase tap areas for menu buttons on mobile

feature/default_network_editable
Alexander Tseung 7 years ago
parent ab1b39f554
commit a07550d2ab
  1. 10
      ui/app/components/tx-view.js
  2. 3
      ui/app/css/itcss/components/hero-balance.scss
  3. 20
      ui/app/css/itcss/components/newui-sections.scss
  4. 14
      ui/app/main-container.js
  5. 13
      ui/app/unlock.js

@ -100,9 +100,10 @@ TxView.prototype.render = function () {
h('div.flex-row.phone-visible', { h('div.flex-row.phone-visible', {
style: { style: {
margin: '1.5em 1.2em 0',
justifyContent: 'space-between', justifyContent: 'space-between',
alignItems: 'center', alignItems: 'center',
flex: '0 0 auto',
margin: '10px',
}, },
}, [ }, [
@ -110,11 +111,10 @@ TxView.prototype.render = function () {
style: { style: {
fontSize: '1.3em', fontSize: '1.3em',
cursor: 'pointer', cursor: 'pointer',
padding: '10px',
}, },
onClick: () => { onClick: () => this.props.sidebarOpen ? this.props.hideSidebar() : this.props.showSidebar(),
this.props.sidebarOpen ? this.props.hideSidebar() : this.props.showSidebar() }),
},
}, []),
h('.identicon-wrapper.select-none', { h('.identicon-wrapper.select-none', {
style: { style: {

@ -5,9 +5,6 @@
flex-direction: column; flex-direction: column;
justify-content: flex-start; justify-content: flex-start;
align-items: center; align-items: center;
margin: .3em .9em 0;
// height: 80vh;
// max-height: 225px;
flex: 0 0 auto; flex: 0 0 auto;
} }

@ -51,6 +51,7 @@ $wallet-view-bg: $alabaster;
cursor: pointer; cursor: pointer;
display: flex; display: flex;
justify-content: center; justify-content: center;
padding: 10px;
} }
// wallet view and sidebar // wallet view and sidebar
@ -314,3 +315,22 @@ $wallet-view-bg: $alabaster;
width: 62vw; width: 62vw;
} }
} }
.unlock-screen-container {
z-index: $main-container-z-index;
font-family: Roboto;
display: flex;
justify-content: center;
align-items: center;
flex: 1 0 auto;
background: #f7f7f7;
width: 100%;
}
.unlock-screen {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
flex: 1 0 auto;
}

@ -32,19 +32,7 @@ MainContainer.prototype.render = function () {
return h(Settings, {key: 'config'}) return h(Settings, {key: 'config'})
default: default:
log.debug('rendering locked screen') log.debug('rendering locked screen')
contents = { return h('.unlock-screen-container', {}, h(UnlockScreen, { key: 'locked' }))
component: UnlockScreen,
style: {
boxShadow: 'none',
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
background: '#F7F7F7',
// must force 100%, because lock screen is full-width
width: '100%',
},
key: 'locked',
}
} }
} }

@ -28,12 +28,7 @@ UnlockScreen.prototype.render = function () {
const state = this.props const state = this.props
const warning = state.warning const warning = state.warning
return ( return (
h('.flex-column', { h('.unlock-screen', [
style: {
width: 'inherit',
},
}, [
h('.unlock-screen.flex-column.flex-center.flex-grow', [
h(Mascot, { h(Mascot, {
animationEventEmitter: this.animationEventEmitter, animationEventEmitter: this.animationEventEmitter,
@ -72,9 +67,7 @@ UnlockScreen.prototype.render = function () {
margin: 10, margin: 10,
}, },
}, 'Log In'), }, 'Log In'),
]),
h('.flex-row.flex-center.flex-grow', [
h('p.pointer', { h('p.pointer', {
onClick: () => { onClick: () => {
this.props.dispatch(actions.markPasswordForgotten()) this.props.dispatch(actions.markPasswordForgotten())
@ -88,9 +81,7 @@ UnlockScreen.prototype.render = function () {
textDecoration: 'underline', textDecoration: 'underline',
}, },
}, 'Restore from seed phrase'), }, 'Restore from seed phrase'),
]),
h('.flex-row.flex-center.flex-grow', [
h('p.pointer', { h('p.pointer', {
onClick: () => { onClick: () => {
this.props.dispatch(actions.setFeatureFlag('betaUI', false, 'OLD_UI_NOTIFICATION_MODAL')) this.props.dispatch(actions.setFeatureFlag('betaUI', false, 'OLD_UI_NOTIFICATION_MODAL'))
@ -103,8 +94,6 @@ UnlockScreen.prototype.render = function () {
marginTop: '32px', marginTop: '32px',
}, },
}, 'Use classic interface'), }, 'Use classic interface'),
]),
]) ])
) )
} }

Loading…
Cancel
Save