Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | <template>
<div
class="newsletter-info-container py-6">
<div class="wrapper px-3 px-sm-intermediate px-inter-0 d-flex flex-column flex-lg-row justify-content-between specific-breakpoint">
<info class="mb-5 mb-lg-0 ipad-margin specific-breakpoint"></info>
<utile-shop class="ipad-margin"></utile-shop>
<div class="d-flex flex-column">
<newsletter class="mb-5 mb-md-lg ipad-margin specific-breakpoint"></newsletter>
<pawn></pawn>
</div>
</div>
</div>
</template>
<script>
import info from './info.vue';
import newsletter from './newsletter.vue';
import utileShop from './utile-shop.vue';
import pawn from './pawn.vue'
export default {
components: {info, newsletter, utileShop, pawn}
}
</script>
<style lang="scss" scoped>
.wrapper {
width: 100%;
max-width: 1440px;
margin: auto;
}
.newsletter-info-container {
background-color: #f1eae2;
}
@media screen and #{$ipad-pro-portrait-breakpoint},
screen and #{$ipad-pro-landscape-breakpoint},
screen and #{$ipad-landscape-breakpoint} {
.specific-breakpoint.wrapper {
flex-direction: column !important;
}
.ipad-margin, .specific-breakpoint.ipad-margin {
margin-bottom: $spacer * 8 !important;
}
}
</style>
|