Set a placeholder for mobile view

This commit is contained in:
dtonon 2026-05-04 12:37:08 +01:00
parent f88d1c2694
commit 9fbe131e85

View file

@ -35,7 +35,14 @@
<link rel="icon" href={favicon} /> <link rel="icon" href={favicon} />
</svelte:head> </svelte:head>
<div class="flex h-screen flex-col overflow-hidden max-w-[1540px] mx-auto"> <div
class="flex h-screen items-center justify-center px-8 text-center text-gray-700 md:hidden"
role="status"
>
Mobile version is coming, for now use a desktop PC
</div>
<div class="hidden h-screen flex-col overflow-hidden max-w-[1540px] mx-auto md:flex">
<Navbar /> <Navbar />
<div class="relative flex flex-1 gap-5 overflow-hidden pt-2"> <div class="relative flex flex-1 gap-5 overflow-hidden pt-2">
<LeftSidebar {mode} {activeRoom} /> <LeftSidebar {mode} {activeRoom} />
@ -52,6 +59,8 @@
</div> </div>
</div> </div>
<LoginModal /> <div class="hidden md:contents">
<JoinModal /> <LoginModal />
<NewDiscussionModal /> <JoinModal />
<NewDiscussionModal />
</div>