Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use styled-components for the menu #852

Merged
merged 12 commits into from
Aug 3, 2018
1 change: 1 addition & 0 deletions gsa/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@
"redux": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"styled-components": "^3.4.0",
"uuid": "^3.3.0",
"x2js": "^3.2.1"
},
Expand Down
2 changes: 1 addition & 1 deletion gsa/src/gmp/log.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

import {isDefined, isString} from './utils/identity';

const GREENBONE_GREEN = '#99CE48';
const GREENBONE_GREEN = '#66c430';

const LogLevels = {
trace: 0,
Expand Down
2 changes: 1 addition & 1 deletion gsa/src/web/components/badge/badge.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ const BadgeIcon = glamorous.span({
zIndex: Theme.Layers.higher,
},
({
backgroundColor = '#99CE48',
backgroundColor = Theme.green,
color = 'white',
position = 'bottom',
radius = 8,
Expand Down
Loading