tayronafoods-web/src/components/Certifications.vue
2023-09-03 14:40:49 +02:00

58 lines
1.0 KiB
Vue

<template>
<section class="certifications">
<div class="right">
<h2>{{ $t('certifications.title1') }}</h2>
<p class="centered"><img class="image" src="@images/image_membresias.png" /></p>
</div>
<div class="left">
<h2>{{ $t('certifications.title2') }}</h2>
<p class="centered"><img class="image" src="@images/Nuestros_aliados.png" /></p>
</div>
</section>
</template>
<script>
export default {
}
</script>
<style lang="scss" scoped>
h2 {
background-color: #000;
color: #fff;
text-align: center;
padding-bottom: 26px !important;
}
.image {
height: 270px;
widows: 270px;;
}
.certifications {
background-color: #000;
background-position: top left;
background-size: contain;
display: grid;
grid-template-columns: 1fr 1fr;
align-items:center;
}
@media only screen and (max-width: 767px) {
h2 {
font-size: 24px !important;
}
.image {
height: 170px;
widows: 170px;;
}
.certifications {
display: flex;
flex-direction: column;
}
}
</style>