Remove ContactDecoration component
This commit is contained in:
parent
53e513a55b
commit
469c52eb97
2 changed files with 5 additions and 71 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue