Hide the vertical pipe in the footer on mobile

This commit is contained in:
2025-06-20 15:16:30 -07:00
parent 1c37c310e7
commit 0041aa4e22

View File

@ -2,7 +2,7 @@
<p>© 2025 Colormatic Studios, All Rights Reserved.</p>
<p>
<a href="mailto:support@colormatic.org">support@colormatic.org</a>
|
<span class="responsive-hidden">|</span>
<a href="mailto:contact@colormatic.org">contact@colormatic.org</a>
</p>
</footer>
@ -28,10 +28,15 @@
footer {
flex-direction: column;
}
footer p {
text-align: center;
padding: 4px;
margin: 4px;
}
.responsive-hidden {
display: none;
}
}
</style>