chore: responsive header (#21115)

This commit is contained in:
zxhlyh
2025-06-17 17:37:06 +08:00
committed by GitHub
parent 0dcacdf83d
commit fc187d6998
9 changed files with 211 additions and 219 deletions

View File

@@ -27,10 +27,12 @@ const ExploreNav = ({
)}>
{
activated
? <RiPlanetFill className='mr-2 h-4 w-4' />
: <RiPlanetLine className='mr-2 h-4 w-4' />
? <RiPlanetFill className='h-4 w-4' />
: <RiPlanetLine className='h-4 w-4' />
}
{t('common.menus.explore')}
<div className='ml-2 max-[1024px]:hidden'>
{t('common.menus.explore')}
</div>
</Link>
)
}