diff --git a/src/routes/contact/+page.svelte b/src/routes/contact/+page.svelte index 84442c1..58cece2 100644 --- a/src/routes/contact/+page.svelte +++ b/src/routes/contact/+page.svelte @@ -9,7 +9,7 @@
-
+

Contact Us

We look forward to hearing from you!

diff --git a/src/routes/contact/ContactPage.scss b/src/routes/contact/ContactPage.scss index cc5d490..2be23ad 100644 --- a/src/routes/contact/ContactPage.scss +++ b/src/routes/contact/ContactPage.scss @@ -12,7 +12,7 @@ flex-direction: column; } -.content { +.contact-content { display: flex; flex-direction: row; width: 100%; @@ -52,3 +52,18 @@ width: 67%; } } + +@media (orientation: portrait) and (max-width: 1080px) { + .contact-content { + flex-direction: column-reverse; + } + + .contact-form-column { + width: 100%; + } + + .contact-image-column { + width: 100%; + justify-content: center; + } +}