Fix contact for on mobile screens to display as a single column

This commit is contained in:
Nathan Chapman 2022-05-15 15:11:40 -06:00
parent 8b6b5a298c
commit 527d592e20

View File

@ -240,6 +240,16 @@ input[type=submit]:hover,
width: 100%;
}
@media screen and (max-width: 600px) {
.contact-form {
grid-template-columns: 1fr;
}
.contact-form p:nth-child(6),
.contact-form p:last-child {
grid-column: 1;
}
}