Merge pull request #3750 from influxdata/bugfix/temp-var-editor-title

Fix display of TemplateVariableEditor header
pull/10616/head
Chris Henn 2018-06-21 12:02:31 -07:00 committed by GitHub
commit ed1f5a177d
2 changed files with 8 additions and 3 deletions

View File

@ -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;

View File

@ -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"