Use global typography styles on Poster page layout

This commit is contained in:
2022-09-14 22:07:31 +02:00
parent 07060c8661
commit 0728491aa6
3 changed files with 19 additions and 22 deletions

View File

@@ -75,8 +75,8 @@
<aside class="poster-layout__buy">
<div class="poster-layout__info">
<dl>
<dt>{capitalizeFirstLetter(product.type)}</dt>
<dd>{shopProduct.name} {shopProduct.price}</dd>
<dt class="title-small">{capitalizeFirstLetter(product.type)}</dt>
<dd class="text-info">{shopProduct.name} {shopProduct.price}</dd>
</dl>
<Button
tag="button"
@@ -114,10 +114,10 @@
<div class="poster-layout__about grid">
<div class="text container">
{#if product.description}
<p>{product.description}</p>
<p class="headline text-large">{product.description}</p>
{/if}
{#if product.details}
<p class="details">{product.details}</p>
<p class="details text-xsmall">{product.details}</p>
{/if}
</div>
</div>