This commit is contained in:
tangly1024
2021-10-13 12:54:03 +08:00
parent 9156095a79
commit 8aefd5546a
2 changed files with 3 additions and 3 deletions

View File

@@ -30,7 +30,7 @@ const MenuButtonGroup = ({ allowCollapse = false }) => {
<div className='my-auto w-5 text-2xl justify-center flex'>
<i className={'fa ' + link.icon} />
</div>
<div className={(allowCollapse ? 'hidden 2xl:block' : '') + ' ml-4 w-32'}>{link.name}</div>
<div className={(allowCollapse ? 'hidden xl:block' : '') + ' ml-4 w-32'}>{link.name}</div>
</li>
</Link>
)