Fix logo in DM
This commit is contained in:
@@ -14,6 +14,15 @@
|
||||
src="../../../static/img/TFN_black.svg"
|
||||
class="mr-3 fill-current"
|
||||
width="180"
|
||||
v-if="theme == 'light'"
|
||||
alt=""
|
||||
/>
|
||||
|
||||
<img
|
||||
src="../../../static/img/TFN_white.svg"
|
||||
class="mr-3 fill-current"
|
||||
width="180"
|
||||
v-else
|
||||
alt=""
|
||||
/>
|
||||
<!-- <span
|
||||
@@ -115,9 +124,7 @@
|
||||
</div>
|
||||
</li> -->
|
||||
</ul>
|
||||
<div
|
||||
class="md:hidden inline-flex rounded-full border w-1/2"
|
||||
>
|
||||
<div class="md:hidden inline-flex rounded-full border w-1/2">
|
||||
<span class="w-auto flex justify-end items-center p-2">
|
||||
<font-awesome :icon="['fas', 'search']" />
|
||||
</span>
|
||||
@@ -130,9 +137,7 @@
|
||||
/>
|
||||
</div>
|
||||
</nav>
|
||||
<div
|
||||
class="hidden md:ml-auto md:inline-block md:order-last"
|
||||
>
|
||||
<div class="hidden md:ml-auto md:inline-block md:order-last">
|
||||
<div class="inline-flex rounded-full border w-1/2">
|
||||
<span class="w-auto flex justify-end items-center p-2">
|
||||
<font-awesome :icon="['fas', 'search']" />
|
||||
|
||||
@@ -1,6 +1,9 @@
|
||||
<template>
|
||||
<Layout :hiddenHeader="true" :disableScroll="true">
|
||||
<div class="container sm:pxi-0 mx-auto overflow-x-hidden">
|
||||
<div
|
||||
class="container sm:pxi-0 mx-auto overflow-x-hidden"
|
||||
:style="{ 'min-height': contentHeight + 'px' }"
|
||||
>
|
||||
<div class="max-w-xl mx-auto py-10">
|
||||
<!-- <img class="" src="/img/valuesheader2.png" alt="" /> -->
|
||||
</div>
|
||||
@@ -27,9 +30,10 @@
|
||||
<div :class="{ block: activeIndex == 0, hidden: activeIndex != 0 }">
|
||||
<img class="" src="/img/valuesheader2.png" alt="" />
|
||||
<p>
|
||||
We are sparking a movement to bring the world
|
||||
a truly peer-to-peer internet. <br /> We acknowledge and support the many
|
||||
people and organizations around the world <br />
|
||||
We are sparking a movement to bring the world a truly peer-to-peer
|
||||
internet. <br />
|
||||
We acknowledge and support the many people and organizations
|
||||
around the world <br />
|
||||
who bring crucial support to the growth and adoption of the
|
||||
ThreeFold Grid.
|
||||
</p>
|
||||
@@ -54,20 +58,20 @@
|
||||
|
||||
<div :class="{ block: activeIndex == 2, hidden: activeIndex != 2 }">
|
||||
<p>
|
||||
<b>EQUALITY</b> is the foundation for a fair world where everyone is
|
||||
given the opportunity to be empowered and to achieve their full
|
||||
<b>EQUALITY</b> is the foundation for a fair world where everyone
|
||||
is given the opportunity to be empowered and to achieve their full
|
||||
potential.
|
||||
</p>
|
||||
<br />
|
||||
<p>
|
||||
<b>AUTONOMY</b>. Being empowered to learn, partake, dream and succeed is
|
||||
fundamental to achieve peace and fulfillment of humankind's
|
||||
potential
|
||||
<b>AUTONOMY</b>. Being empowered to learn, partake, dream and
|
||||
succeed is fundamental to achieve peace and fulfillment of
|
||||
humankind's potential
|
||||
</p>
|
||||
<br />
|
||||
<p>
|
||||
<b>SUSTAINABILITY</b> ensures the future of life on earth. It is about
|
||||
adopting the behavior and mindset to minimize our footprint.
|
||||
<b>SUSTAINABILITY</b> ensures the future of life on earth. It is
|
||||
about adopting the behavior and mindset to minimize our footprint.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
@@ -183,6 +187,13 @@ export default {
|
||||
this.activeIndex = index;
|
||||
},
|
||||
},
|
||||
computed: {
|
||||
contentHeight() {
|
||||
if (process.isClient) {
|
||||
return window.innerHeight - 130;
|
||||
}
|
||||
},
|
||||
},
|
||||
components: {
|
||||
VueMarkdown,
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user