Add shop and newsletter subscribe to photos page

This commit is contained in:
2021-10-04 18:22:15 +02:00
parent 4fb2f6da07
commit 9bb57362f0
2 changed files with 16 additions and 0 deletions

View File

@@ -91,6 +91,12 @@
</div> </div>
</div> </div>
<div class="grid-modules">
<div class="wrap">
<Shop />
<Newsletter />
</div>
</div>
</div> </div>
</section> </section>
</main> </main>

View File

@@ -267,4 +267,14 @@
} }
} }
} }
// Modules
.grid-modules {
grid-column: 1 / span var(--columns);
margin-bottom: 0;
@include bp (sm) {
grid-column: 2 / span 22;
}
}
} }