feat: Adiciona Infocard do bot mobile

This commit is contained in:
Filipe Quintanilha Evangelista 2022-10-12 13:21:50 -03:00
parent 2b56671873
commit 340907520b
3 changed files with 15 additions and 4 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 246 KiB

View File

@ -236,13 +236,15 @@ body{
} }
@media screen and (min-width:1025px){ @media screen and (min-width:1025px){
.main-banner-mobile{ .main-banner-mobile,
.bot-infocard-image-mobile{
display: none; display: none;
} }
} }
@media screen and (max-width:1024px) { @media screen and (max-width:1024px) {
.main-banner-desktop{ .main-banner-desktop,
.bot-infocard-image-desktop{
display: none; display: none;
} }
@ -313,5 +315,13 @@ body{
.bot-card-image-04{ .bot-card-image-04{
width: 23%; width: 23%;
} }
.bot-infocard{
flex-direction: column-reverse;
padding: 98px 0 87px;
}
.bot-infocard-text{
width: 84%;
}
} }

View File

@ -144,11 +144,12 @@
</div> </div>
<figure class="bot-infocard-figure"> <figure class="bot-infocard-figure">
<img class="bot-infocard-image" src="./assets/images/bot-infocard-image-desktop.png" alt="Imagem do Infocard do Bot"> <img class="bot-infocard-image bot-infocard-image-desktop" src="./assets/images/bot-infocard-image-desktop.png" alt="Imagem do Infocard do Bot Desktop">
<img class="bot-infocard-image bot-infocard-image-mobile" src="./assets/images/bot-infocard-image-mobile.png" alt="Imagem do Infocard do Bot">
</figure> </figure>
</article> </article>
</main> </main>
</body> </body>