mirror of
https://github.com/phishingclub/phishingclub.git
synced 2026-07-10 14:18:42 +02:00
0b3b796a00
Improved dark mode Added company banner and moved change company Changed campaign trends, and now requires 2 campaigns atleast Menu collapses if open and link clicked Changed calendar event type indicator Changed mobile menu Changed campaign event timeline and event cards Various UI changes Signed-off-by: Ronni Skansing <rskansing@gmail.com>
14 lines
283 B
Svelte
14 lines
283 B
Svelte
<script>
|
|
export let href;
|
|
export let title = '';
|
|
</script>
|
|
|
|
<td
|
|
class="pl-4 font-regular text-slate-600 dark:text-gray-200 text-ellipsis whitespace-nowrap overflow-hidden pr-4 transition-colors duration-200"
|
|
{title}
|
|
>
|
|
<a {href} class="block w-full py-1">
|
|
<slot />
|
|
</a>
|
|
</td>
|