forked from M3-Academy/vtex-cms-template-atualizado
feat(link): Adiciona parte de links mobile
This commit is contained in:
parent
f04de26ee3
commit
ff97914318
@ -3,8 +3,11 @@
|
||||
background: linear-gradient(180deg, $blue-500 0%, $blue-600 100%);
|
||||
|
||||
&__wrapper {
|
||||
margin: 0 auto;
|
||||
max-width: 698px;
|
||||
@include mq(lg, min) {
|
||||
margin: 0 auto;
|
||||
max-width: 698px;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
&__title {
|
||||
|
@ -1,12 +1,31 @@
|
||||
.footer-links {
|
||||
padding: 29px 0 25px;
|
||||
border: 1px solid red;
|
||||
|
||||
@include mq(md, min) {
|
||||
padding: 29px 0 25px;
|
||||
border: solid $gray-100;
|
||||
border-width: 1px 0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
&__wrapper {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, max-content);
|
||||
gap: 148px;
|
||||
justify-content: center;
|
||||
|
||||
@include mq(md, max) {
|
||||
gap: 0;
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
|
||||
&__block {
|
||||
|
||||
@include mq(md, max) {
|
||||
padding: 24px 15px;
|
||||
border-bottom: 1px solid $gray-100;
|
||||
}
|
||||
}
|
||||
|
||||
&__title {
|
||||
@ -23,6 +42,7 @@
|
||||
align-items: center;
|
||||
gap: 16px;
|
||||
grid-auto-flow: column;
|
||||
grid-auto-columns: max-content;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
<section class="footer-links">
|
||||
<div class="footer-links__wrapper">
|
||||
<div class="footer-links__column">
|
||||
<div class="footer-links__block">
|
||||
<h4 class="footer-links__title">DÚVIDAS</h4>
|
||||
<ul class="footer-links__items-list">
|
||||
<li class="footer-links__item">
|
||||
@ -41,7 +41,7 @@
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="footer-links__column">
|
||||
<div class="footer-links__block">
|
||||
<h4 class="footer-links__title">FALE CONOSCO</h4>
|
||||
<ul class="footer-links__items-list">
|
||||
<li class="footer-links__item">
|
||||
@ -60,7 +60,7 @@
|
||||
<li class="footer-links__item"><span>DAS 8H30 AS 18H</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="footer-links__column">
|
||||
<div class="footer-links__block">
|
||||
<h4 class="footer-links__title">FIQUE LIGADO</h4>
|
||||
<ul
|
||||
class="
|
||||
|
Loading…
Reference in New Issue
Block a user