This commit is contained in:
José Conde
2023-09-04 12:56:05 +02:00
parent a3473ac706
commit 39f8bd82f6
7 changed files with 61 additions and 20 deletions

View File

@ -3,7 +3,7 @@
<div class="contact-section">
<div class="left">
<h1>{{ $t('contact.title') }}</h1>
<p>{{ $t('contact.paragraph1') }}</p>
<p v-html="$t('contact.paragraph1')"></p>
<h3>{{ $t('contact.paragraph2') }}</h3>
<p>{{ $t('contact.paragraph3') }}</p>
<p>{{ $t('contact.paragraph4') }}</p>
@ -12,7 +12,7 @@
<p>{{ $t('contact.paragraph7') }}</p>
<p>{{ $t('contact.paragraph8') }}</p>
<h3>{{ $t('contact.paragraph9') }}</h3>
<p>{{ $t('contact.paragraph10') }}</p>
<p><a href="https://www.instagram.com/tayrona_foods" target="">Instagram</a></p>
</div>
<div class="right"></div>
</div>
@ -36,20 +36,28 @@ export default {
h1 {
font-weight: 400;
font-size: 64px;
font-size: 32px;
line-height: 75px;
}
h3 {
margin-top: 54px;
font-weight: 400;
font-size: 32px;
font-size: 18px;
line-height: 38px;
}
p {
font-weight: 400;
font-size: 20px;
font-weight: 300;
font-size: 16px;
line-height: 24px;
}
}
@media only screen and (max-width: 767px) {
.contact-section {
.left {
padding: 36px 16px;
}
}
}
</style>