diff options
Diffstat (limited to 'app/components')
| -rw-r--r-- | app/components/HeaderBar.css | 4 | ||||
| -rw-r--r-- | app/components/HeaderBar.js | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/app/components/HeaderBar.css b/app/components/HeaderBar.css index f6b289284b..4d9d326eff 100644 --- a/app/components/HeaderBar.css +++ b/app/components/HeaderBar.css @@ -6,6 +6,10 @@ background-color: #D0021B; } +.header--style-success { + background-color: #44AD4D; +} + .headerbar__title { font-family: DINPro; font-size: 24px; diff --git a/app/components/HeaderBar.js b/app/components/HeaderBar.js index a8bf99229d..d13c5c3462 100644 --- a/app/components/HeaderBar.js +++ b/app/components/HeaderBar.js @@ -4,7 +4,7 @@ import Enum from '../lib/enum'; export default class HeaderBar extends Component { /** Bar style */ - static Style = Enum('default', 'error'); + static Style = Enum('default', 'error', 'success'); static propTypes = { style: PropTypes.string |
