improvement layout
Deploy app frontend / app frontend (push) Successful in 1m49s

This commit is contained in:
2024-12-09 09:38:16 +02:00
parent 4e718f5e1d
commit 33a8d8417a
5 changed files with 74 additions and 33 deletions
@@ -1,6 +1,7 @@
<template>
<!-- shadow-md dark:shadow-lg -->
<div
class="sticky bottom-0 bg-white dark:bg-gray-800 shadow-md dark:shadow-lg py-safe-or-4 sm:border-b dark:sm:border-gray-700 sm:order-first sm:justify-center touch-none"
class="sticky bottom-0 bg-white dark:bg-gray-800 sm:border-b dark:sm:border-gray-700 sm:order-first sm:justify-center touch-none px-safe"
>
<div
class="flex justify-around sm:justify-between sm:gap-8 sm:px-4 sm:flex-row sm:bg-white dark:sm:bg-gray-800 sm:max-w-prose mx-auto"
@@ -27,8 +28,8 @@ type Tab = {
unreadCount?: number
}
const tabs: Tab[] = [
{ route: ROUTE_NAMES.CREATE, label: 'Создать QR-код', icon: 'plus' },
{ route: ROUTE_NAMES.MANAGE_DASHBOARD_QR, label: 'Мои QR-коды', icon: 'qrcode' },
{ route: ROUTE_NAMES.CREATE, label: 'Создать QRкод', icon: 'plus' },
{ route: ROUTE_NAMES.MANAGE_DASHBOARD_QR, label: 'Мои QRкоды', icon: 'qrcode' },
{ route: ROUTE_NAMES.MANAGE_DASHBOARD_CHATS, label: 'Чаты', icon: 'comments' },
// { to: ROUTE_NAMES., label: 'Профиль', icon: 'user' },
]