This commit is contained in:
brooktewabe 2026-02-23 11:41:36 +03:00
parent 6d475650da
commit 2c96be08bf

View File

@ -137,28 +137,6 @@ export function SportsSidebar() {
</Button> </Button>
</div> </div>
<div className="p-2 space-y-1">
<Button className="w-full bg-[#004d40] text-[#00bfa5] hover:bg-[#003d33] border-none py-2 h-auto text-[11px] font-bold uppercase rounded-none tracking-widest">
<span className="size-2 rounded-full bg-brand-primary mr-2 live-dot"></span>
IN-PLAY
</Button>
<div className="bg-brand-surface p-3 border border-border/10">
<span className="text-brand-primary text-[10px] uppercase font-bold block mb-2">Quick Filter</span>
<div className="grid grid-cols-6 gap-0.5">
{["All", "Today", "3h", "6h", "9h", "12h"].map((t) => (
<button key={t} className="text-[9px] py-1 bg-brand-surface-light text-white/70 hover:bg-brand-surface transition-colors">{t}</button>
))}
</div>
</div>
<div className="bg-brand-surface p-3 border border-border/10">
<span className="text-brand-primary text-[10px] uppercase font-bold block mb-2">Search Event</span>
<p className="text-[9px] text-white/40 mb-2 leading-tight">Insert the events name or at least one team in the form below</p>
<div className="flex flex-col gap-1.5">
<input type="text" className="bg-brand-surface-light border-none text-white text-[10px] px-2 py-1.5 focus:ring-0" placeholder="Search" />
<Button className="bg-brand-surface text-white hover:bg-brand-bg py-1.5 h-auto rounded-none text-[10px] font-bold uppercase transition-colors">Search</Button>
</div>
</div>
</div>
</aside> </aside>
) )
} }