mirror of https://github.com/laurent22/joplin.git
parent
7ec3a7be9f
commit
64ef5ebde4
packages/app-desktop/gui
|
@ -37,6 +37,8 @@ class DropboxLoginScreenComponent extends React.Component<any, any> {
|
|||
|
||||
const inputStyle = Object.assign({}, theme.inputStyle, { width: 500 });
|
||||
|
||||
const buttonStyle = Object.assign({}, theme.buttonStyle, { marginRight: 10 });
|
||||
|
||||
return (
|
||||
<div style={{ display: 'flex', flexDirection: 'column', height: '100%' }}>
|
||||
<div style={containerStyle}>
|
||||
|
@ -49,7 +51,7 @@ class DropboxLoginScreenComponent extends React.Component<any, any> {
|
|||
<p>
|
||||
<input type="text" value={this.state.authCode} onChange={this.shared_.authCodeInput_change} style={inputStyle} />
|
||||
</p>
|
||||
<button disabled={this.state.checkingAuthToken} onClick={this.shared_.submit_click}>
|
||||
<button disabled={this.state.checkingAuthToken} style={buttonStyle} onClick={this.shared_.submit_click}>
|
||||
{_('Submit')}
|
||||
</button>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue