1
0
Fork 0
mirror of synced 2024-07-04 14:01:27 +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)}> <li on:click={() => addToText(helper.text)}>
<div> <div>
<Label extraSmall>{helper.displayText}</Label> <Label extraSmall>{helper.displayText}</Label>
{@html helper.description} <div class="helper-description">{@html helper.description}</div>
</div> </div>
</li> </li>
{/each} {/each}
@ -183,4 +183,16 @@
color: var(--red); color: var(--red);
text-decoration: underline; 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> </style>