feat: add series functionality (#406)

Co-authored-by: welpo <welpo@users.noreply.github.com>
This commit is contained in:
ZzMzaw
2024-11-08 00:01:30 +01:00
committed by GitHub
parent 57a0a8e1a0
commit 0253799f23
52 changed files with 1824 additions and 75 deletions

View File

@@ -265,3 +265,24 @@ details summary {
[data-force-text-direction="rtl"] * {
direction: inherit;
}
.title-with-jump {
display: flex;
justify-content: space-between;
align-items: center;
}
.title-with-jump h1 {
flex: 1;
}
.jump-link {
flex-shrink: 0;
font-size: 0.9rem;
}
@media (max-width: 500px) {
.title-with-jump {
flex-direction: column;
}
}