Skip to content

Commit

Permalink
fix license sync button misalignment (#2289)
Browse files Browse the repository at this point in the history
  • Loading branch information
sgalsaleh committed Nov 2, 2021
1 parent 9a7c29b commit 68c2d3b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion web/src/components/apps/AppLicense.jsx
Expand Up @@ -253,7 +253,7 @@ class AppLicense extends Component {
<button className="btn primary blue" disabled={loading} onClick={this.syncAppLicense.bind(this, "")}>{loading ? "Syncing" : "Sync license"}</button>
}
{message &&
<p className={classNames("u-fontWeight--bold u-fontSize--small", {
<p className={classNames("u-fontWeight--bold u-fontSize--small u-marginTop--10", {
"u-textColor--error": messageType === "error",
"u-textColor--primary": messageType === "info",
})}>{message}</p>
Expand Down
1 change: 0 additions & 1 deletion web/src/scss/components/apps/AppLicense.scss
Expand Up @@ -81,5 +81,4 @@
overflow: scroll;
text-overflow: ellipsis;
white-space: nowrap;
width: 90%;
}

0 comments on commit 68c2d3b

Please sign in to comment.