From 966dc1c282635b899b822fabb6e0535bd76c0bbd Mon Sep 17 00:00:00 2001 From: Munawwirul Jamal Date: Sun, 12 Oct 2025 12:15:52 +0700 Subject: [PATCH 1/2] dev: hotfix, more standardization --- app/assets/css/main.css | 2 +- app/components/layout/SidebarNavGroup.vue | 4 ++-- app/components/layout/SidebarNavHeader.vue | 6 +++--- app/components/layout/SidebarNavLink.vue | 2 +- app/components/pub/ui/input/Input.vue | 2 +- app/components/pub/ui/sidebar/SidebarGroupLabel.vue | 2 +- app/components/pub/ui/sidebar/SidebarMenuBadge.vue | 2 +- app/components/pub/ui/table/TableCell.vue | 2 +- app/components/pub/ui/table/TableHead.vue | 2 +- 9 files changed, 12 insertions(+), 12 deletions(-) diff --git a/app/assets/css/main.css b/app/assets/css/main.css index b5064af7..cab62d6e 100644 --- a/app/assets/css/main.css +++ b/app/assets/css/main.css @@ -174,7 +174,7 @@ body { } body, table, label { - @apply md:!text-xs xl:!text-sm 2xl:!text-sm; + @apply md:!text-xs 2xl:!text-sm; } /* Container */ diff --git a/app/components/layout/SidebarNavGroup.vue b/app/components/layout/SidebarNavGroup.vue index 60f46105..9b92e619 100644 --- a/app/components/layout/SidebarNavGroup.vue +++ b/app/components/layout/SidebarNavGroup.vue @@ -22,7 +22,7 @@ const openCollapsible = ref(false) - + {{ item.title }} diff --git a/app/components/layout/SidebarNavHeader.vue b/app/components/layout/SidebarNavHeader.vue index 351f7d83..4dd56bdb 100644 --- a/app/components/layout/SidebarNavHeader.vue +++ b/app/components/layout/SidebarNavHeader.vue @@ -22,13 +22,13 @@ const activeTeam = ref(props.teams[0])
- +
- {{ activeTeam.name }} + {{ activeTeam?.name }} - {{ activeTeam.plan }} + {{ activeTeam?.plan }}
diff --git a/app/components/layout/SidebarNavLink.vue b/app/components/layout/SidebarNavLink.vue index 260c48be..322a635b 100644 --- a/app/components/layout/SidebarNavLink.vue +++ b/app/components/layout/SidebarNavLink.vue @@ -21,7 +21,7 @@ const { setOpenMobile } = useSidebar() diff --git a/app/components/pub/ui/input/Input.vue b/app/components/pub/ui/input/Input.vue index c00ba9d7..0e9ec0bf 100644 --- a/app/components/pub/ui/input/Input.vue +++ b/app/components/pub/ui/input/Input.vue @@ -24,7 +24,7 @@ const modelValue = useVModel(props, 'modelValue', emits, { v-model="modelValue" :class=" cn( - 'border-input dark:bg-slate-950 ring-offset-background placeholder:text-muted-foreground flex h-8 xl:h-9 w-full rounded-md border border-gray-400 px-3 py-2 md:text-xs xl:text-sm file:border-0 file:bg-transparent md:file:text-xs xl:file:text-sm file:font-medium disabled:cursor-not-allowed disabled:opacity-50', + 'border-input dark:bg-slate-950 ring-offset-background placeholder:text-muted-foreground flex h-8 2xl:h-9 w-full rounded-md border border-gray-400 px-3 py-2 md:text-xs 2xl:text-sm file:border-0 file:bg-transparent md:file:text-xs xl:file:text-sm file:font-medium disabled:cursor-not-allowed disabled:opacity-50', props.class, ) " diff --git a/app/components/pub/ui/sidebar/SidebarGroupLabel.vue b/app/components/pub/ui/sidebar/SidebarGroupLabel.vue index 162e04e0..0479b7a9 100644 --- a/app/components/pub/ui/sidebar/SidebarGroupLabel.vue +++ b/app/components/pub/ui/sidebar/SidebarGroupLabel.vue @@ -15,7 +15,7 @@ const props = defineProps diff --git a/app/components/pub/ui/sidebar/SidebarMenuBadge.vue b/app/components/pub/ui/sidebar/SidebarMenuBadge.vue index 80862e1a..8503f0c4 100644 --- a/app/components/pub/ui/sidebar/SidebarMenuBadge.vue +++ b/app/components/pub/ui/sidebar/SidebarMenuBadge.vue @@ -11,7 +11,7 @@ const props = defineProps<{
From f52e51677590555a189a7d014af596079bcc2cc9 Mon Sep 17 00:00:00 2001 From: Munawwirul Jamal Date: Sun, 12 Oct 2025 13:06:21 +0700 Subject: [PATCH 2/2] dev: hotfix, layout --- app/components/pub/ui/card/CardContent.vue | 2 +- app/components/pub/ui/card/CardDescription.vue | 2 +- app/components/pub/ui/card/CardFooter.vue | 2 +- app/components/pub/ui/sidebar/Sidebar.vue | 10 +++++----- app/components/pub/ui/sidebar/SidebarProvider.vue | 2 ++ app/components/pub/ui/sidebar/utils.ts | 3 ++- app/layouts/default.vue | 2 +- 7 files changed, 13 insertions(+), 10 deletions(-) diff --git a/app/components/pub/ui/card/CardContent.vue b/app/components/pub/ui/card/CardContent.vue index 2c5eda28..08b098f0 100644 --- a/app/components/pub/ui/card/CardContent.vue +++ b/app/components/pub/ui/card/CardContent.vue @@ -8,7 +8,7 @@ const props = defineProps<{ diff --git a/app/components/pub/ui/card/CardDescription.vue b/app/components/pub/ui/card/CardDescription.vue index b17e1d89..b20d2ad7 100644 --- a/app/components/pub/ui/card/CardDescription.vue +++ b/app/components/pub/ui/card/CardDescription.vue @@ -8,7 +8,7 @@ const props = defineProps<{ diff --git a/app/components/pub/ui/card/CardFooter.vue b/app/components/pub/ui/card/CardFooter.vue index 08a2bd84..b2f2e110 100644 --- a/app/components/pub/ui/card/CardFooter.vue +++ b/app/components/pub/ui/card/CardFooter.vue @@ -8,7 +8,7 @@ const props = defineProps<{ diff --git a/app/components/pub/ui/sidebar/Sidebar.vue b/app/components/pub/ui/sidebar/Sidebar.vue index f25e3b9c..d7a9d0d0 100644 --- a/app/components/pub/ui/sidebar/Sidebar.vue +++ b/app/components/pub/ui/sidebar/Sidebar.vue @@ -30,7 +30,7 @@ const { isMobile, state, openMobile, setOpenMobile } = useSidebar()