This commit is contained in:
tree 2022-05-03 16:42:14 +02:00
rodič 5f0a334639
revize fe1544fd99
4 změnil soubory, kde provedl 51 přidání a 2 odebrání

Zobrazit soubor

@ -32,6 +32,13 @@
padding-left: 40px;
}
.utxo-markdown h1 {
font-size: 1.25rem; /* 18px */
line-height: 2rem;
font-weight: 600;
padding-bottom: 0.7em;
}
.utxo-markdown h2 {
font-size: 1.125rem; /* 18px */
line-height: 1.75rem;

Zobrazit soubor

@ -0,0 +1,32 @@
<script context="module">
export const prerender = true;
</script>
<script>
import { bundle } from "$lib/stores.js";
import { onMount, onDestroy } from "svelte";
import SvelteMarkdown from "svelte-markdown";
import Link from "$lib/Link.svelte";
const renderers = { link: Link };
let text = null;
onMount(async () => {
const resp = await fetch("https://spec.utxo.cz/22/CHANGELOG.md");
text = await resp.text();
});
</script>
<svelte:head>
<title>Speciální vstupenky | {$bundle ? $bundle.name : "UTXO.22"}</title>
</svelte:head>
<section class="relative mx-auto py-6 sm:py-10 px-6 max-w-6xl text-blue-web">
{#if text}
<div class="utxo-markdown">
<SvelteMarkdown source={text} {renderers} />
</div>
{:else}
Načítám..
{/if}
</section>

Zobrazit soubor

@ -109,7 +109,13 @@
<tbody>
{#each tickets as ticket}
<tr
class={["speaker", "host", "partner", "organizator", "staff"].includes(ticket.type)
class={[
"speaker",
"host",
"partner",
"organizator",
"staff",
].includes(ticket.type)
? "bg-green-400/20 hover:bg-green-600/20"
: ticket.id
? "hover:bg-blue-500/10"

Zobrazit soubor

@ -768,7 +768,11 @@
sobotu večer
</div>
<div class="mb-2">
• unikátní <a href="https://poap.xyz/" target="_blank" title="Proof of Attendance Protocol">POAP</a> odznak na památku (k dispozici po konferenci)
• unikátní <a
href="https://poap.xyz/"
target="_blank"
title="Proof of Attendance Protocol">POAP</a
> odznak na památku (k dispozici po konferenci)
</div>
</div>
</div>