design fixes
ci/woodpecker/push/woodpecker Pipeline failed Podrobnosti

This commit is contained in:
Adam Sobotka 2022-10-28 18:32:45 +02:00
rodič ed0f0370d1
revize 077006f776
2 změnil soubory, kde provedl 21 přidání a 9 odebrání

Zobrazit soubor

@ -4,10 +4,22 @@
"name": "Hackathon Registration Opens",
"description": "Gate opens! Register and do your part for a privacy and security",
"speakers": null,
"datetime": "Fri, 11 Nov 2022 14:00:00 GMT",
"datetime": "Fri, 11 Nov 2022 12:00:00 GMT",
"stage": null,
"eventtype": "Key"
},
{
"id": "5",
"name": "ZKSync Workshop: Building on zkSync 2.0",
"description": "The Ethereum Layer 2 project is about to undergo its most significant upgrade to date. With the launch of zkSync 2.0, the network will gain the capacity for smart contracts, letting developers create and deploy their own DeFi protocols, NFTs, and blockchain games.",
"speakers": [
{ "id": "adam", "name": "Adam Sobotka" },
{ "id": "nick-almond", "name": "Nick Almond" }
],
"datetime": "Fri, 11 Nov 2022 15:00:00 GMT",
"stage": "Atrium",
"eventtype": "Talk"
},
{
"id": "2",
"name": "How to build censorship resistant web",

Zobrazit soubor

@ -36,19 +36,19 @@
<section class="text-white bg-black body-font overflow-hidden">
<div class="container px-5 py-24 mx-auto">
{#each filteredEvents as evt}
<div class="-my-8 divide-y-2 divide-gray-800">
<div class="py-8 flex flex-wrap md:flex-nowrap">
<div class="py-8 divide-y-2 divide-gray-800">
<div class=" flex flex-wrap md:flex-nowrap">
{#if evt.eventtype === 'Key'}
<div class="md:w-64 md:mb-0 mb-6 flex-shrink-0 flex flex-col">
<div><span class="font-bold title-font text-black bg-white p-5">3pm-4pm</span></div>
<div class="md:w-64 md:mb-0 flex-shrink-0 flex flex-col border-l-4 border-white pl-2">
<span class="font-bold title-font px-2 ">3pm-4pm</span>
</div>
{:else}
<div class="md:w-64 md:mb-0 mb-6 flex-shrink-0 flex flex-col">
<span class="font-semibold title-font text-white">3pm-4pm</span>
<a href="/venues" class="mt-1 text-white text-sm mb-1 hover:underline"
<div class="md:w-64 md:mb-0 flex-shrink-0 flex flex-col border-l-4 border-gray-900 pl-2">
<span class="font-semibold title-font text-white px-2">3pm-4pm</span>
<a href="/venues" class="mt-1 text-white text-sm mb-1 hover:underline px-2"
>🞋 {evt.stage}</a
>
<span class="mt-1 text-gray-500 text-sm uppercase">{evt.eventtype}</span>
<span class="mt-1 text-gray-500 text-sm uppercase px-2">{evt.eventtype}</span>
</div>
{/if}