implemented device name

This commit is contained in:
2025-06-17 16:46:44 +02:00
parent f765d5bdf0
commit e33fa804fa
24 changed files with 1004 additions and 190 deletions

View File

@ -1,5 +1,5 @@
<template>
<div class="h-full w-full flex flex-col overflow-hidden">
<div class="h-full flex-1 flex flex-col overflow-auto">
<nav
class="navbar rounded-b max-sm:shadow border-b border-base-content/25 sm:z-20 relative px-2 py-0 sm:py-2"
>
@ -35,13 +35,13 @@
</NuxtLinkLocale>
</div>
<div class="flex items-center gap-4 me-4">
<div class="flex items-center gap-x-4">
<HaexMenuNotifications />
<HaexMenuMain />
</div>
</nav>
<div class="flex h-full w-full overflow-hidden">
<div class="flex h-full w-full overflow-auto">
<aside
id="sidebar"
class="sm:shadow-none transition-all h-full overflow-hidden border-r border-base-300"

View File

@ -1,5 +1,5 @@
<template>
<div class="w-screen h-screen bg-base-200 min-w-52">
<div class="w-screen h-dvh bg-base-200 min-w-52 overflow-auto">
<slot />
</div>
</template>