Change header size

pull/10616/head
Andrew Watkins 2018-04-19 10:07:21 -07:00
parent 229fa9b063
commit 7e909c2752
1 changed files with 2 additions and 2 deletions

View File

@ -56,14 +56,14 @@ class TimeMachine extends PureComponent<Props> {
{expressions.map(({funcs, id}, i) => {
return (
<div key={id} className="func-nodes-container">
<h2>
<h4>
Expression {i}
<FuncSelector
expressionID={id}
funcs={this.funcNames}
onAddNode={onAddNode}
/>
</h2>
</h4>
{funcs.map(func => (
<FuncNode
key={func.id}