Skip to content

Commit 640050e

Browse files
committed
Add spacing between done and authorize button
1 parent c70e0f8 commit 640050e

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/core/components/auth/auths.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ export default class Auths extends React.Component {
8181
}).toArray()
8282
}
8383
<div className="auth-btn-wrapper">
84-
<Button className="btn modal-btn auth" onClick={ this.close }>Done</Button>
84+
<Button className="btn modal-btn auth btn-done" onClick={ this.close }>Done</Button>
8585
{
8686
nonOauthDefinitions.size === authorizedAuth.size ? <Button className="btn modal-btn auth" onClick={ this.logoutClick }>Logout</Button>
8787
: <Button type="submit" className="btn modal-btn auth authorize">Authorize</Button>

src/style/_authorize.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55
padding: 10px 0;
66

77
justify-content: center;
8+
9+
.btn-done {
10+
margin-right: 1em;
11+
}
812
}
913

1014
.auth-wrapper

0 commit comments

Comments
 (0)