mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-17 23:44:39 -05:00
Refined description UI
This commit is contained in:
parent
8542efbdae
commit
9b5e57480d
1 changed files with 1 additions and 2 deletions
|
@ -191,7 +191,6 @@ export const ProductsSectionStyles = ({site}) => {
|
||||||
line-height: 1.45em;
|
line-height: 1.45em;
|
||||||
margin: -12px 0 0;
|
margin: -12px 0 0;
|
||||||
padding: 14px 24px;
|
padding: 14px 24px;
|
||||||
border-top: 1px solid var(--grey12);
|
|
||||||
color: var(--grey3);
|
color: var(--grey3);
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
@ -558,7 +557,7 @@ function ProductCard({product}) {
|
||||||
setSelectedProduct(product.id);
|
setSelectedProduct(product.id);
|
||||||
}} />
|
}} />
|
||||||
<h4 className="gh-portal-product-name">{product.name}</h4>
|
<h4 className="gh-portal-product-name">{product.name}</h4>
|
||||||
<div className="gh-portal-product-description">{product.description}</div>
|
{product.description ? <div className="gh-portal-product-description">{product.description}</div> : ''}
|
||||||
<ProductBenefitsContainer product={product} />
|
<ProductBenefitsContainer product={product} />
|
||||||
</div>
|
</div>
|
||||||
<ProductCardFooter product={product} />
|
<ProductCardFooter product={product} />
|
||||||
|
|
Loading…
Add table
Reference in a new issue