feat: style layers, imports and nesting

This commit is contained in:
Cory Dransfeldt 2024-04-15 12:37:32 -07:00
parent 8e5d497389
commit d4c87b8abe
No known key found for this signature in database
58 changed files with 968 additions and 981 deletions

View file

@ -1,27 +1,31 @@
.contact__wrapper {
display: flex;
flex-direction: column;
& textarea {
height: calc(var(--sizing-3xl) * 5);
resize: none;
}
& .column.contact__description p:first-child {
margin-top: 0;
}
}
.contact__wrapper textarea {
height: calc(var(--sizing-3xl) * 5);
resize: none;
}
.contact__wrapper .column.contact__description p:first-child {
margin-top: 0;
.contact__success--header {
margin: 0 0 var(--sizing-lg);
}
@media screen and (min-width: 768px) {
.contact__wrapper {
flex-direction: row;
}
.contact__wrapper .column {
width: 50%;
}
& .column {
width: 50%;
}
.contact__wrapper .column.contact__description {
padding-right: var(--sizing-xl);
& .column.contact__description {
padding-right: var(--sizing-xl);
}
}
}