refactor: move mobile menu to the bottom on mobile

This commit is contained in:
Kentai Radiquum 2025-03-27 20:41:53 +05:00
parent 2241a8a226
commit bf67b5d928
Signed by: Radiquum
GPG key ID: 858E8EE696525EED

View file

@ -22,7 +22,7 @@ export const MenuPage = () => {
return (
<>
{userStore.user && (
<div className="flex flex-col gap-2">
<div className="fixed flex flex-col justify-end gap-2 left-4 right-4 bottom-24 sm:static">
<div className="flex flex-wrap items-center gap-2">
<Link
href={`/profile/${userStore.user.id}`}
@ -111,32 +111,6 @@ export const MenuPage = () => {
</div>
</Card>
</Link>
<Link href={"https://t.me/anix_web"} className="flex-1">
<Card>
<div className="flex items-center gap-2">
<span className="w-8 h-8 iconify fa6-brands--telegram"></span>
<div>
<p>Телеграм канал</p>
<p className="text-sm text-gray-400 dark:text-gray-200">
@anix_web
</p>
</div>
</div>
</Card>
</Link>
<Link href={"https://wah.su/radiquum"} className="flex-1">
<Card>
<div className="flex items-center gap-2">
<span className="w-8 h-8 iconify mdi--code"></span>
<div>
<p>Разработчик</p>
<p className="text-sm text-gray-400 dark:text-gray-200">
Radiquum
</p>
</div>
</div>
</Card>
</Link>
<SettingsModal
isOpen={isSettingModalOpen}
setIsOpen={setIsSettingModalOpen}