Remove ContactDecoration component

This commit is contained in:
Paul Nicoué 2023-02-02 17:17:44 +01:00
parent 53e513a55b
commit 469c52eb97
2 changed files with 5 additions and 71 deletions

View file

@ -1,7 +1,6 @@
<template>
<section id="contact" class="contact">
<ContactDecoration class="contact__decoration" />
<ContactHeader class="contact__header" />
<ContactForm class="contact__form" />
</section>
@ -21,17 +20,13 @@
max-width: var(--regular-content-max-width);
display: grid;
grid:
'decoration header' auto
'decoration form' auto
/ auto 1fr;
'header' auto
'form' auto
/ 1fr;
place-content: start stretch;
place-items: start stretch;
row-gap: 4rem;
&__decoration {
grid-area: decoration;
}
&__header {
grid-area: header;
}
@ -46,8 +41,8 @@
@media screen and (min-width: $desktop-media-query) {
grid:
'decoration header form' auto
/ auto 1fr 2fr;
'header form' auto
/ 1fr 2fr;
column-gap: 6rem;
}
}