refactor(ui): rename topbar to boardsbar and add desktop footer for board, thread, and catalog

This commit is contained in:
plebeius
2026-02-23 16:47:51 +08:00
parent a7721fc252
commit 4433834c1c
39 changed files with 672 additions and 294 deletions
@@ -0,0 +1,38 @@
.footer {
margin-top: 16px;
padding-bottom: 24px;
}
.footer hr {
width: 90%;
margin: 16px auto;
border: none;
border-top: 1px solid var(--border-color, #ccc);
}
.firstRow {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 8px;
padding: 8px 0;
text-align: center;
}
.boardsBarRow {
padding: 8px 0;
}
.legalMeta {
padding: 12px 0 0;
font-size: 11px;
color: var(--body-font-color);
text-align: center;
}
@media (max-width: 640px) {
.footer {
display: none;
}
}