simplify footer

This commit is contained in:
2026-01-02 16:32:03 -08:00
parent 931bd577cd
commit 7f0b485914
2 changed files with 5 additions and 17 deletions

View File

@ -57,13 +57,9 @@ populateNav();
/* Footer */ /* Footer */
const footerHTML = ` const footerHTML = `
<div id="contacts"> <p>questions?
<p>questions? <a href="mailto:beall.greenhouses@gmail.com">email us!</a>
<a href="mailto:beall.greenhouses@gmail.com"> </p>
email us!
</a>
</p>
</div>
<p>brought to you in 2026</p> <p>brought to you in 2026</p>
` `

View File

@ -86,7 +86,7 @@ header img {
footer { footer {
width: 95%; width: 95%;
margin: 0 auto; margin: 0 auto;
padding: 0 0 1rem; padding: 1rem 0;
} }
footer p { footer p {
@ -94,6 +94,7 @@ footer p {
color: var(--color-bg); color: var(--color-bg);
text-align: center; text-align: center;
font-size: .9rem; font-size: .9rem;
padding: .25rem;
} }
footer a { footer a {
@ -104,12 +105,3 @@ footer a {
footer a:focus-visible { footer a:focus-visible {
outline-color: var(--color-accent-flipped); outline-color: var(--color-accent-flipped);
} }
#contacts {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-content: center;
column-gap: 3rem;
margin: 1rem 0 0;
}