header: align About dropdown vertically + slow ticker scroll (BEAT 17→50s, FORUM 40→120s)

This commit is contained in:
Ryan Salazar
2026-05-22 01:29:00 +00:00
parent d2ef1ba6c3
commit 9da8122871
2 changed files with 4 additions and 4 deletions

View File

@@ -30,7 +30,7 @@ export default function AboutDropdown() {
}, [open]);
return (
<div ref={wrapRef} className="relative">
<div ref={wrapRef} className="relative flex items-stretch">
<button
type="button"
onClick={() => setOpen((v) => !v)}
@@ -38,7 +38,7 @@ export default function AboutDropdown() {
aria-expanded={open}
className="bb-browse-item gap-1 focus:outline-none focus-visible:ring-1 focus-visible:ring-[#3b82f6]"
>
<span>About</span>
<span>ABOUT</span>
<span aria-hidden="true" className="text-[10px]"></span>
</button>
{open && (

View File

@@ -112,14 +112,14 @@ export default function DualSpeedTicker() {
label="BEAT"
labelColor="#00ff9f"
glowColor="rgba(0,255,159,0.55)"
durationSec={17}
durationSec={50}
items={beat}
/>
<Row
label="FORUM"
labelColor="#00d4ff"
glowColor="rgba(0,212,255,0.55)"
durationSec={40}
durationSec={120}
items={forum}
/>