Tweaked contact page layout

This commit is contained in:
2025-01-18 02:10:48 +00:00
parent e54e7bcf9d
commit a233a4ea8a
2 changed files with 17 additions and 2 deletions

View File

@@ -9,7 +9,7 @@
<div class="contact-page">
<NavigationHeader />
<div class="content">
<div class="contact-content">
<div class="contact-form-column">
<h1>Contact Us</h1>
<h2>We look forward to hearing from you!</h2>

View File

@@ -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;
}
}