Remove color styles from plugin detail view (#232)
This commit is contained in:
parent
bdb6372235
commit
6edfd8400e
|
|
@ -131,7 +131,7 @@ const PanelWrapper: React.SFC<IPanelWrapperProps> = ({
|
||||||
}) => {
|
}) => {
|
||||||
const Icon = icon;
|
const Icon = icon;
|
||||||
return (
|
return (
|
||||||
<Container style={{display: 'block', width: '100%', margin: '20px', color: 'white'}}>
|
<Container style={{display: 'block', width: '100%', margin: '20px'}}>
|
||||||
<Typography variant="h5">
|
<Typography variant="h5">
|
||||||
{Icon ? (
|
{Icon ? (
|
||||||
<span>
|
<span>
|
||||||
|
|
@ -150,11 +150,7 @@ const PanelWrapper: React.SFC<IPanelWrapperProps> = ({
|
||||||
</Button>
|
</Button>
|
||||||
) : null}
|
) : null}
|
||||||
</Typography>
|
</Typography>
|
||||||
{description ? (
|
{description ? <Typography variant="subtitle1">{description}</Typography> : null}
|
||||||
<Typography variant="subtitle1" style={{color: 'grey'}}>
|
|
||||||
{description}
|
|
||||||
</Typography>
|
|
||||||
) : null}
|
|
||||||
<hr />
|
<hr />
|
||||||
<div
|
<div
|
||||||
className={name
|
className={name
|
||||||
|
|
@ -269,7 +265,6 @@ class PluginInfo extends Component<{pluginInfo: IPlugin}> {
|
||||||
href={url}
|
href={url}
|
||||||
target="_blank"
|
target="_blank"
|
||||||
rel="noopener noreferrer"
|
rel="noopener noreferrer"
|
||||||
style={{color: 'white'}}
|
|
||||||
className="custom-route">
|
className="custom-route">
|
||||||
{url}
|
{url}
|
||||||
</a>
|
</a>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue