feat(landing): trending, new releases, most tested/reported sections with peek hero layout

This commit is contained in:
2026-05-15 01:05:55 +08:00
parent dbb0caa7e7
commit 23700b00ae
2 changed files with 306 additions and 26 deletions
+19
View File
@@ -35,4 +35,23 @@
outline: 2px solid var(--color-primary);
outline-offset: 2px;
border-radius: 4px;
}
/* Thin scrollbar for horizontal scroll sections */
.scrollbar-thin {
scrollbar-width: thin;
scrollbar-color: color-mix(in srgb, var(--color-text) 15%, transparent) transparent;
}
.scrollbar-thin::-webkit-scrollbar {
height: 4px;
}
.scrollbar-thin::-webkit-scrollbar-track {
background: transparent;
}
.scrollbar-thin::-webkit-scrollbar-thumb {
background: color-mix(in srgb, var(--color-text) 15%, transparent);
border-radius: 2px;
}