AlertTab style fixes

This commit is contained in:
Torkel Ödegaard 2019-01-04 12:18:49 +01:00
parent 2eeba9dae1
commit f749ced36e
3 changed files with 33 additions and 34 deletions

View File

@ -25,7 +25,7 @@ export interface EditorToolbarView {
icon?: string;
disabled?: boolean;
onClick?: () => void;
render?: (closeFunction?: any) => JSX.Element | JSX.Element[];
render?: () => JSX.Element;
action?: () => void;
buttonType: ToolbarButtonType;
}

View File

@ -69,9 +69,8 @@ class StateHistory extends PureComponent<Props, State> {
return (
<div>
<div style={{ margin: '0 auto', maxWidth: '720px' }}>
{stateHistoryItems.length > 0 && (
<div style={{ marginBottom: '15px' }}>
<div className="p-b-1">
<span className="muted">Last 50 state changes</span>
<button className="btn btn-mini btn-danger pull-right" onClick={this.clearHistory}>
<i className="fa fa-trash" /> {` Clear history`}
@ -104,7 +103,6 @@ class StateHistory extends PureComponent<Props, State> {
)}
</ol>
</div>
</div>
);
}
}

View File

@ -107,6 +107,7 @@
display: flex;
flex-direction: column;
flex-grow: 1;
justify-content: center;
overflow: hidden;
}