Fix secs in small screens

This commit is contained in:
samaradel
2022-06-22 10:55:54 +02:00
parent b79121239d
commit 2f75ae58a0
2 changed files with 8 additions and 5 deletions

View File

@@ -64,9 +64,9 @@ That is a number with 21 zeroes!
| | |
| ----------- | ----------- |
| ![Image](/images/tft_800.png#tft_img) | $800 billion of revenue is expected for the cloud market by 2025 |
| ![Image](/images/tft_70b.png#tft_img) | Over seventy billion new devices are expected to be online by 2025 |
| ![Image](/images/tft_1b.png#tft_img) | Over one billion people are still expected to get digital access by 2025|
| ![Image](/images/tft_800.png#tft_img) |  $800 billion of revenue is expected for the cloud market by 2025 |
| ![Image](/images/tft_70b.png#tft_img) |    Over seventy billion new devices are expected to be online by 2025 |
| ![Image](/images/tft_1b.png#tft_img) |    Over one billion people are still expected to get digital access by 2025|
@@ -104,7 +104,7 @@ While many projects have created bits and pieces of what a decentralized Interne
{% row(gradient="linear-gradient(180deg,#ea1ff7,#70dfc9)" style="margin") %}
![Image](/images/tft_currency.png#medium#absolute)
![Image](/images/tft_currency.png#medium#absolute#sm_none)
|||

View File

@@ -360,7 +360,7 @@ header {
@media (min-width: 1024px){
h2 {
font-size: 3.5rem;
}
}
}
@media (max-width: 640px) {
.banner h2 {
@@ -381,4 +381,7 @@ header {
.header {
padding: 80px 0;
}
img[src*="#sm_none"] {
display: none;
}
}