fixed right pulling of actionbutton and changed subtitle headline for validator purpose

This commit is contained in:
Florian Scholdei
2019-02-20 11:58:22 +01:00
parent b8dd00fc09
commit 33b331b9a0
2 changed files with 4 additions and 2 deletions

View File

@@ -25,8 +25,10 @@ class Page extends React.Component<Props> {
<Title title={title} />
<Subtitle subtitle={subtitle} />
</div>
<div className="column is-two-fifths is-pulled-right">
<div className="column is-two-fifths">
<div className="is-pulled-right">
{this.renderPageActions()}
</div>
</div>
</div>
<ErrorNotification error={error} />

View File

@@ -9,7 +9,7 @@ class Subtitle extends React.Component<Props> {
render() {
const { subtitle } = this.props;
if (subtitle) {
return <h1 className="subtitle">{subtitle}</h1>;
return <h2 className="subtitle">{subtitle}</h2>;
}
return null;
}