Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/dashboard/[slug]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export default function WorkingSpacePage() {
setLoading(false);
}
return (
<MaxWContainer className=" relative">
<MaxWContainer className=" relative mb-20">
<ADiv>
{
(getNoteTable?.length!==0)?
Expand Down
2 changes: 1 addition & 1 deletion app/dashboard/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default function DashboardLayout({ children }: { children: ReactNode }) {
<main className="w-full relative">
<div className=" p-2 flex items-center justify-start gap-2">
<SidebarTrigger className=" lg:block hidden"/>
{/* <BreadcrumbWithCustomSeparator/> */}
<BreadcrumbWithCustomSeparator/>
</div>
{children}
</main>
Expand Down
2 changes: 1 addition & 1 deletion app/dashboard/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export default function ProductPage() {
router.push(`/dashboard/${slug}?id=${workingSpaceid}`);
}
return (
<MaxWContainer className=" relative">
<MaxWContainer className=" relative mb-20">
<ADiv>
<div className="w-full text-center py-14 my-5 bg-gradient-to-r from-brand_fourthary via-transparent to-brand_fourthary rounded-lg">
<h1 className=" text-xl sm:text-3xl font-bold text-center">
Expand Down
4 changes: 2 additions & 2 deletions components/dashboard-components/FloatingNavbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export default function FloatingNavbar({workingSpaceId}:FloatingNavbarProps) {
}

return (
<div className="fixed w-full bottom-0 right-0 h-16 bg-brand_fourthary/90 backdrop-blur border border-solid border-brand_tertiary/5 rounded-t-2xl block sm:hidden ">
<div className="fixed w-full bottom-0 right-0 h-14 bg-brand_fourthary/70 backdrop-blur border border-solid border-brand_tertiary/5 rounded-t-2xl block sm:hidden ">
<div className=" w-full h-full flex justify-center items-center gap-5">
<Button
variant="Trigger"
Expand Down Expand Up @@ -92,7 +92,7 @@ export default function FloatingNavbar({workingSpaceId}:FloatingNavbarProps) {
</DropdownMenuTrigger>
<DropdownMenuContent
side="top"
className=" rounded-lg m-2 p-2 bg-brand_fourthary backdrop-blur border border-solid border-brand_tertiary/10 w-fit"
className=" rounded-lg m-2 p-2 bg-brand_fourthary/70 backdrop-blur border border-solid border-brand_tertiary/10 w-fit"
>
<DropdownMenuItem className=" w-full">
<Button variant="SidebarMenuButton" className=" w-full" disabled={true}>
Expand Down