paulnicoue/components/ContactSection.vue
2023-02-13 17:23:36 +01:00

49 lines
990 B
Vue

<template>
<section class="contact">
<ContactHeader class="contact__header" />
<ContactForm class="contact__form" />
</section>
</template>
<script setup>
</script>
<style lang="scss" scoped>
// --------------------------------------------------
// STYLE
// --------------------------------------------------
.contact {
display: grid;
grid:
'header' auto
'form' auto
/ 1fr;
place-content: start stretch;
place-items: start stretch;
row-gap: 4rem;
&__header {
grid-area: header;
}
&__form {
grid-area: form;
}
@media screen and (min-width: $tablet-media-query) {
column-gap: 4rem;
}
@media screen and (min-width: $desktop-media-query) {
grid:
'header form' auto
/ 1fr 2fr;
column-gap: 6rem;
}
}
</style>