diff --git a/components/ContactDecoration.vue b/components/ContactDecoration.vue
deleted file mode 100644
index 1d9cae8..0000000
--- a/components/ContactDecoration.vue
+++ /dev/null
@@ -1,61 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/components/ContactSection.vue b/components/ContactSection.vue
index a21e47d..805187b 100644
--- a/components/ContactSection.vue
+++ b/components/ContactSection.vue
@@ -1,7 +1,6 @@
@@ -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;
}
}