style: update footer layout in default-base.css for responsive design

- Adjusted the footer styles within media queries to ensure proper layout and spacing on larger screens.
This commit is contained in:
Zack Spear
2025-05-27 17:17:35 -07:00
parent de9cce0531
commit 0ee1433c53

View File

@@ -657,13 +657,17 @@ div.title.shift {
margin-top: auto;
}
@media (min-width: 768px) {
#footer {
grid-template-columns: minmax(0, auto) minmax(0, auto);
justify-content: space-between;
}
}
@media (min-width: 768px) and (min-height: 768px) {
#footer {
position: fixed;
bottom: 0;
left: 0;
z-index: 10000;
grid-template-columns: minmax(0, auto) minmax(0, auto);
justify-content: space-between;
}
}
#countdown {