diff options
| author | Andrej Mihajlov <and@codeispoetry.ru> | 2017-02-14 11:03:09 +0000 |
|---|---|---|
| committer | Andrej Mihajlov <and@codeispoetry.ru> | 2017-02-14 11:03:09 +0000 |
| commit | 6aa0b0441dc1e58bd296ec99e3f5cff31556468d (patch) | |
| tree | f4a8dc64d143e3cad564c3d890720df84c8603c9 /app/components | |
| parent | 466ec31815baecdd51d1366ea89c2e57bae4f33c (diff) | |
| download | mullvadvpn-6aa0b0441dc1e58bd296ec99e3f5cff31556468d.tar.xz mullvadvpn-6aa0b0441dc1e58bd296ec99e3f5cff31556468d.zip | |
Add success style
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 |
