some tg tests

This commit is contained in:
Vladimir Voronin
2024-10-25 09:06:26 +03:00
parent dd7779bc1c
commit ad6dc2a92d
7 changed files with 96 additions and 65 deletions

View File

@@ -2,15 +2,15 @@
<div id="app" class="flex flex-col h-screen bg-gray-100 gap-4">
<!-- MenuBar всегда фиксирован сверху -->
<MenuBar class="w-full sticky invisible lg:visible top-0 z-10"/>
<MenuBar class="w-full sticky hidden lg:block top-0 z-10"/>
<ToolBar class=" fixed visible lg:invisible bottom-0 z-10"/>
<!-- Контентная часть заполняет оставшееся пространство -->
<div class="flex-grow ">
<router-view class="w-full h-full "/>
<router-view class="w-full h-full mt-4 lg:mt-0"/>
</div>
<OverlayView/>
<OverlayView class="w-full sticky invisible lg:visible top-0 z-10"/>
</div>
</template>