fix order at mobile

This commit is contained in:
2022-10-04 19:09:11 +02:00
parent 38827133fa
commit 7b41dc1d30
5 changed files with 12 additions and 6 deletions

View File

@@ -89,7 +89,7 @@ We're a 100% open-source and community-driven project that builds the critical i
<!-- section 4 (DEVELOPER COMMUNITY) --> <!-- section 4 (DEVELOPER COMMUNITY) -->
{% row(bgColor="#f2f2f2" style="narrow margin") %} {% row(bgColor="#f2f2f2" style="narrow margin reverse") %}
## Join the ThreeFold <br> **Developer Community** ## Join the ThreeFold <br> **Developer Community**

View File

@@ -58,7 +58,7 @@ Any current or future technology, including blockchain, metaverses and web 3.0,
<br> <br>
<br> <br>
{% row() %} {% row(style="reverse") %}
## Scaled by the People <br> **to the Edge** ## Scaled by the People <br> **to the Edge**
@@ -109,7 +109,7 @@ A decentralized autonomous operating system designed to dedicate hardware capaci
<br> <br>
<br> <br>
{% row() %} {% row(style="reverse") %}
## A Decentralized **Internet Economy** ## A Decentralized **Internet Economy**

View File

@@ -63,7 +63,7 @@ Internet access is a human right and it can change everything for the lives of p
<!-- section 3 (SOVEREIGN) --> <!-- section 3 (SOVEREIGN) -->
{% row(style="margin") %} {% row(style="margin reverse") %}
## Empowering People **To Be Sovereign** ## Empowering People **To Be Sovereign**

View File

@@ -166,7 +166,7 @@ People buy TFT to store data and run applications privately on a peer-to-peer In
<!-- section 6 (OPEN NETWORK) --> <!-- section 6 (OPEN NETWORK) -->
{% row(style="margin") %} {% row(style="margin reverse") %}
## Loyalty **Rewards** ## Loyalty **Rewards**
@@ -202,7 +202,7 @@ TFT is minted only when new Internet capacity is added to the ThreeFold Grid. A
<!-- section 8 (BURN AND FARM) --> <!-- section 8 (BURN AND FARM) -->
{% row(style="margin") %} {% row(style="margin reverse") %}
## Burn and Farm **Equilibrium** ## Burn and Farm **Equilibrium**

View File

@@ -70,6 +70,12 @@ Parameters:
{% set row_class = row_class ~ " text-white" %} {% set row_class = row_class ~ " text-white" %}
{% endif %} {% endif %}
<!-- reverse col at mobile -->
{% if "reverse" in style %}
{% set row_class = "flex flex-col-reverse md:flex-row items-center" %}
{% endif %}
<!-- makes row with margins --> <!-- makes row with margins -->
{% if "margin" in style %} {% if "margin" in style %}
{% set row_class = row_class ~ " lg:py-28 sm:p-12 md:p-16 lg:p-20" %} {% set row_class = row_class ~ " lg:py-28 sm:p-12 md:p-16 lg:p-20" %}