mirror of
https://github.com/ditatompel/xmr-remote-nodes.git
synced 2024-12-22 11:39:23 +00:00
fix(ui): Postcss not working for Country cell
For some unknown reason, using postcss class is not working anymore
This commit is contained in:
parent
7cc2b1035f
commit
a963963b72
1 changed files with 2 additions and 8 deletions
|
@ -18,22 +18,16 @@
|
|||
|
||||
{#if asn !== 0}
|
||||
<br /><a
|
||||
class="external asn"
|
||||
class="external !text-purple-800 dark:!text-purple-400"
|
||||
href="https://www.ditatompel.com/asn/{asn}"
|
||||
target="_blank"
|
||||
rel="noopener">AS{asn}</a
|
||||
>
|
||||
(<span class="asn-name">{asn_name}</span>)
|
||||
(<span class="font-semibold text-green-800 dark:text-green-500">{asn_name}</span>)
|
||||
{/if}
|
||||
|
||||
<style lang="postcss">
|
||||
a {
|
||||
@apply font-semibold text-sky-800 underline dark:text-sky-500;
|
||||
}
|
||||
a.asn {
|
||||
@apply !text-purple-800 dark:!text-purple-400;
|
||||
}
|
||||
span.asn-name {
|
||||
@apply font-semibold text-green-800 dark:text-green-500;
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Reference in a new issue