This repository has been archived on 2025-03-28. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
coryd.dev-eleventy/src/assets/styles/pages/contact.css
2024-04-28 19:06:48 -07:00

31 lines
No EOL
460 B
CSS

.contact-wrapper {
display: flex;
flex-direction: column;
& textarea {
height: calc(var(--sizing-3xl) * 5);
resize: none;
}
}
.contact-success-header {
margin: 0 0 var(--sizing-lg);
}
@media screen and (min-width: 768px) {
.contact-wrapper {
flex-direction: row;
& .column {
width: 50%;
}
& .column.description {
padding-right: var(--sizing-xl);
}
}
form {
margin-top: var(--sizing-base);
}
}