fix: further increase font sizes, icons, buttons, and spacing
This commit is contained in:
@@ -26,22 +26,22 @@ export default function DesktopIcon({ icon, label, onClick, disabled, locked, vi
|
||||
X{index % 4}Y{Math.floor(index / 4)}
|
||||
</span>
|
||||
|
||||
<span className={`material-symbols-outlined text-[28px] transition-colors duration-75
|
||||
<span className={`material-symbols-outlined text-[34px] transition-colors duration-75
|
||||
${isBlocked ? 'text-[#444]' : 'text-[#888] group-hover:text-[#ff4500]'}`}>
|
||||
{icon}
|
||||
</span>
|
||||
|
||||
<div className="flex items-center gap-1.5">
|
||||
<span className={`text-[11px] font-semibold tracking-[0.12em] uppercase transition-colors duration-75
|
||||
<span className={`text-[17px] font-semibold tracking-[0.12em] uppercase transition-colors duration-75
|
||||
${isBlocked ? 'text-[#555]' : 'text-[#555] group-hover:text-[#e0e0e0]'}`}>
|
||||
{label}
|
||||
</span>
|
||||
{isBlocked && <span className="text-[10px]">🔒</span>}
|
||||
{vip && !isBlocked && <span className="text-[9px] text-[#ff4500]">✦</span>}
|
||||
{isBlocked && <span className="text-[34px]">🔒</span>}
|
||||
{vip && !isBlocked && <span className="text-[15px] text-[#ff4500]">✦</span>}
|
||||
</div>
|
||||
|
||||
{isBlocked && (
|
||||
<span className="text-[8px] font-mono text-[#444] tracking-wider">{vip && locked ? 'VIP' : '登录后可用'}</span>
|
||||
<span className="text-[17px] font-mono text-[#444] tracking-wider">{vip && locked ? 'VIP' : '登录后可用'}</span>
|
||||
)}
|
||||
|
||||
{!isBlocked && (
|
||||
|
||||
Reference in New Issue
Block a user