1
0
Fork 0
mirror of synced 2024-07-02 13:01:09 +12:00

Fixing some styling issues.

This commit is contained in:
mike12345567 2021-02-01 13:13:50 +00:00
parent 9fcb8c258d
commit 2dccd49a61

View file

@ -92,7 +92,7 @@
<li on:click={() => addToText(helper.text)}>
<div>
<Label extraSmall>{helper.displayText}</Label>
{@html helper.description}
<div class="helper-description">{@html helper.description}</div>
</div>
</li>
{/each}
@ -183,4 +183,16 @@
color: var(--red);
text-decoration: underline;
}
:global(.helper-description p) {
color: var(--grey-7);
}
:global(.helper-description p:hover) {
color: var(--ink);
}
:global(.helper-description p a) {
color: var(--grey-7);
}
</style>