Skip to content

Commit 6edfd84

Browse files
authored
Remove color styles from plugin detail view (#232)
1 parent bdb6372 commit 6edfd84

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

ui/src/plugin/PluginDetailView.tsx

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ const PanelWrapper: React.SFC<IPanelWrapperProps> = ({
131131
}) => {
132132
const Icon = icon;
133133
return (
134-
<Container style={{display: 'block', width: '100%', margin: '20px', color: 'white'}}>
134+
<Container style={{display: 'block', width: '100%', margin: '20px'}}>
135135
<Typography variant="h5">
136136
{Icon ? (
137137
<span>
@@ -150,11 +150,7 @@ const PanelWrapper: React.SFC<IPanelWrapperProps> = ({
150150
</Button>
151151
) : null}
152152
</Typography>
153-
{description ? (
154-
<Typography variant="subtitle1" style={{color: 'grey'}}>
155-
{description}
156-
</Typography>
157-
) : null}
153+
{description ? <Typography variant="subtitle1">{description}</Typography> : null}
158154
<hr />
159155
<div
160156
className={name
@@ -269,7 +265,6 @@ class PluginInfo extends Component<{pluginInfo: IPlugin}> {
269265
href={url}
270266
target="_blank"
271267
rel="noopener noreferrer"
272-
style={{color: 'white'}}
273268
className="custom-route">
274269
{url}
275270
</a>

0 commit comments

Comments
 (0)