Remove color styles from plugin detail view (#232)

This commit is contained in:
Jannis Mattheis 2019-10-19 09:42:48 +02:00 committed by GitHub
parent bdb6372235
commit 6edfd8400e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 7 deletions

View File

@ -131,7 +131,7 @@ const PanelWrapper: React.SFC<IPanelWrapperProps> = ({
}) => {
const Icon = icon;
return (
<Container style={{display: 'block', width: '100%', margin: '20px', color: 'white'}}>
<Container style={{display: 'block', width: '100%', margin: '20px'}}>
<Typography variant="h5">
{Icon ? (
<span>
@ -150,11 +150,7 @@ const PanelWrapper: React.SFC<IPanelWrapperProps> = ({
</Button>
) : null}
</Typography>
{description ? (
<Typography variant="subtitle1" style={{color: 'grey'}}>
{description}
</Typography>
) : null}
{description ? <Typography variant="subtitle1">{description}</Typography> : null}
<hr />
<div
className={name
@ -269,7 +265,6 @@ class PluginInfo extends Component<{pluginInfo: IPlugin}> {
href={url}
target="_blank"
rel="noopener noreferrer"
style={{color: 'white'}}
className="custom-route">
{url}
</a>