1
0
Fork 0
mirror of synced 2024-10-01 01:28:51 +13:00

fixes link text colors

This commit is contained in:
kevmodrome 2020-12-09 15:12:10 +01:00
parent a91fc28eb9
commit 19cd58a5ac
No known key found for this signature in database
GPG key ID: 828D8FE4D235B551

View file

@ -19,8 +19,6 @@
export let imageHeight
$: cssVariables = {
linkColor,
linkHoverColor,
imageWidth,
cardWidth,
imageHeight,
@ -30,18 +28,18 @@
</script>
<div
use:styleable={$component.styles}
use:cssVars={cssVariables}
class="container"
use:styleable={$component.styles}>
class="container">
{#if showImage}<img class="image" src={imageUrl} alt="" />{/if}
<div class="content">
<main>
<h2 class="heading">{heading}</h2>
<p class="text">{description}</p>
</main>
<footer>
<footer >
<p class="subtext">{subtext}</p>
<a href={linkUrl}>{linkText}</a>
<a style="--linkColor: {linkColor}; --linkHoverColor: {linkHoverColor}" href={linkUrl}>{linkText}</a>
</footer>
</div>
</div>