Commit f749ced3 by Torkel Ödegaard

AlertTab style fixes

parent 2eeba9da
......@@ -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;
}
......
......@@ -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>
);
}
}
......
......@@ -107,6 +107,7 @@
display: flex;
flex-direction: column;
flex-grow: 1;
justify-content: center;
overflow: hidden;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment