feat: add discover page for airing anime

This commit is contained in:
2026-04-07 14:08:08 +02:00
parent aa5a99eec7
commit f77788588e
19 changed files with 437 additions and 125 deletions

View File

@@ -973,3 +973,32 @@ a:visited {
gap: 8px;
}
}
/* Tabs */
.tabs {
display: flex;
gap: 16px;
margin-bottom: 24px;
border-bottom: 1px solid var(--border);
padding-bottom: 8px;
}
.tab {
background: none;
border: none;
color: var(--text-muted);
font-size: 16px;
cursor: pointer;
padding: 8px 16px;
transition: color 0.2s;
text-transform: lowercase;
}
.tab:hover {
color: var(--text);
}
.tab.active {
color: var(--link);
font-weight: bold;
}