fix: global font size increase + button size increase

This commit is contained in:
Chen Gu
2026-05-09 15:23:46 +08:00
parent 61a8245582
commit 03b58aa1d1
26 changed files with 144 additions and 226 deletions

View File

@@ -80,13 +80,13 @@ export default function WeaponSchemes() {
<div className="flex flex-col gap-3 p-3 flex-1">
{/* 标题 */}
<div className="flex items-center justify-between border-b border-[#333] pb-2">
<h1 className="text-[11px] font-bold tracking-[0.15em] uppercase"></h1>
<h1 className="text-[13px] font-bold tracking-[0.15em] uppercase"></h1>
<div className="flex gap-1">
{(['hot', 'new'] as const).map(s => (
<button
key={s}
onClick={() => { setSort(s); setPage(1); }}
className={`px-2 py-1 text-[8px] font-semibold tracking-[0.08em] uppercase border transition-colors duration-75
className={`px-2 py-1 text-[12px] font-semibold tracking-[0.08em] uppercase border transition-colors duration-75
${sort === s ? 'border-[#ff4500] text-[#ff4500] bg-[#ff4500]/10' : 'border-[#333] text-[#555] hover:border-[#555]'}`}
>
{s === 'hot' ? '🔥 热门' : '🕐 最新'}