add display rules for mobile header partial

This commit is contained in:
emma 2025-01-28 09:54:42 -05:00
parent 837dad6aae
commit a5573058d1

View File

@ -148,6 +148,10 @@ section {
margin-bottom: 0.5rem;
}
.mobile-header {
display: none;
}
@media (prefers-color-scheme: dark) {
:root {
--background-color: #240046;
@ -200,6 +204,10 @@ section {
}
@media only screen and (max-width: 600px) {
.mobile-header {
display: flex;
}
header {
display: none;
}