feat: spruce up design

This commit is contained in:
Cory Dransfeldt 2024-04-28 19:06:48 -07:00
parent 2614dff452
commit 94e28067f9
No known key found for this signature in database
51 changed files with 480 additions and 202 deletions

View file

@ -6,10 +6,6 @@
height: calc(var(--sizing-3xl) * 5);
resize: none;
}
& .column.description p:first-child {
margin-top: 0;
}
}
.contact-success-header {
@ -28,4 +24,8 @@
padding-right: var(--sizing-xl);
}
}
form {
margin-top: var(--sizing-base);
}
}

View file

@ -0,0 +1,21 @@
.link-grid {
display: grid;
gap: var(--sizing-sm);
grid-template-columns: repeat(1,minmax(0,1fr));
margin-bottom: var(--sizing-base);
& .link {
border: 1px solid var(--gray-light);
padding: var(--sizing-xs) var(--sizing-sm) 0;
& button {
margin-right: var(--sizing-xs);
}
}
}
@media screen and (min-width: 768px) {
.link-grid {
grid-template-columns: repeat(2,minmax(0,1fr));
}
}

View file

@ -3,7 +3,7 @@
padding-left: var(--sizing-base);
& p {
margin: var(--sizing-xs) 0;
margin: var(--sizing-sm) 0;
& > svg {
display: inline;