Merge pull request #3750 from influxdata/bugfix/temp-var-editor-title
Fix display of TemplateVariableEditor headerpull/10616/head
commit
ed1f5a177d
|
@ -13,6 +13,13 @@ $padding: 20px 30px;
|
|||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.edit-temp-var--header > h1 {
|
||||
color: #eeeff2;
|
||||
letter-spacing: 0;
|
||||
font-size: 19px;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.edit-temp-var--header-controls > button {
|
||||
display: inline-block;
|
||||
margin: 0 5px;
|
||||
|
|
|
@ -102,9 +102,7 @@ class TemplateVariableEditor extends PureComponent<Props, State> {
|
|||
return (
|
||||
<div className="edit-temp-var">
|
||||
<div className="edit-temp-var--header">
|
||||
<h1 className="page-header__title">
|
||||
{isNew ? 'Create' : 'Edit'} Template Variable
|
||||
</h1>
|
||||
<h1>{isNew ? 'Create' : 'Edit'} Template Variable</h1>
|
||||
<div className="edit-temp-var--header-controls">
|
||||
<button
|
||||
className="btn btn-default"
|
||||
|
|
Loading…
Reference in New Issue