Skip to content

Commit 8d840bc

Browse files
committed
fix (tasks): tasks page frontend fix
1 parent 1102330 commit 8d840bc

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

src/client/app/tasks/page.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -660,7 +660,7 @@ Description: ${event.description || "No description."}`
660660
// --- END NEW ---
661661

662662
return (
663-
<div className="flex-1 flex h-screen text-white overflow-hidden">
663+
<div className="flex-1 flex h-full text-white overflow-hidden">
664664
<Tooltip
665665
id="tasks-tooltip"
666666
place="right"
@@ -784,7 +784,7 @@ Description: ${event.description || "No description."}`
784784
initial={{ opacity: 0 }}
785785
animate={{ opacity: 1 }}
786786
exit={{ opacity: 0 }}
787-
className="fixed inset-0 bg-black/70 backdrop-blur-md z-[70] md:hidden"
787+
className="fixed inset-0 bg-black/70 z-[70] md:hidden"
788788
>
789789
<motion.div
790790
initial={{ y: "100%" }}
@@ -811,7 +811,7 @@ export default function TasksPage() {
811811
return (
812812
<Suspense
813813
fallback={
814-
<div className="flex-1 flex h-screen bg-black text-white overflow-hidden justify-center items-center">
814+
<div className="flex-1 flex h-full bg-black text-white overflow-hidden justify-center items-center">
815815
<IconLoader className="w-10 h-10 animate-spin text-[var(--color-accent-blue)]" />
816816
</div>
817817
}
@@ -820,3 +820,4 @@ export default function TasksPage() {
820820
</Suspense>
821821
)
822822
}
823+

0 commit comments

Comments
 (0)