mirror of
https://github.com/MoonTechLab/LunaTV.git
synced 2026-05-13 16:07:32 +08:00
fix: mobile nav item width
This commit is contained in:
@@ -1 +1 @@
|
|||||||
20250731011829
|
20250731020402
|
||||||
@@ -87,7 +87,11 @@ const MobileBottomNav = ({ activePath }: MobileBottomNavProps) => {
|
|||||||
{navItems.map((item) => {
|
{navItems.map((item) => {
|
||||||
const active = isActive(item.href);
|
const active = isActive(item.href);
|
||||||
return (
|
return (
|
||||||
<li key={item.href} className='flex-shrink-0 w-20 min-w-20'>
|
<li
|
||||||
|
key={item.href}
|
||||||
|
className='flex-shrink-0'
|
||||||
|
style={{ width: '20vw', minWidth: '20vw' }}
|
||||||
|
>
|
||||||
<Link
|
<Link
|
||||||
href={item.href}
|
href={item.href}
|
||||||
className='flex flex-col items-center justify-center w-full h-14 gap-1 text-xs'
|
className='flex flex-col items-center justify-center w-full h-14 gap-1 text-xs'
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
'use client';
|
'use client';
|
||||||
|
|
||||||
const CURRENT_VERSION = '20250731011829';
|
const CURRENT_VERSION = '20250731020402';
|
||||||
|
|
||||||
// 版本检查结果枚举
|
// 版本检查结果枚举
|
||||||
export enum UpdateStatus {
|
export enum UpdateStatus {
|
||||||
|
|||||||
Reference in New Issue
Block a user