diff --git a/src/components/FloatingNavbar.tsx b/src/components/FloatingNavbar.tsx index eee4a1f..53b65fb 100644 --- a/src/components/FloatingNavbar.tsx +++ b/src/components/FloatingNavbar.tsx @@ -43,7 +43,7 @@ export default function FloatingNavbar({ onNavigate }: Props) { onNavigate()} - className="flex w-full items-center gap-3 rounded-lg px-3 py-1 hover:bg-[#1A1823] transition" + className="flex w-full items-center gap-3 rounded-md px-3 py-1 hover:bg-[#1A1823] transition" > @@ -62,18 +62,20 @@ export default function FloatingNavbar({ onNavigate }: Props) { - e.preventDefault()}> -
- -
-
+ e.preventDefault()} + className="mx-1 my-1 hover:bg-[#1F2A3D]" +> + + - e.preventDefault()}> -
- -
-
-
+ e.preventDefault()} + className="mx-1 my-1 hover:bg-[#1F2A3D]" +> + + +
diff --git a/src/components/ui/PinnedModal.tsx b/src/components/ui/PinnedModal.tsx index a341965..e395d08 100644 --- a/src/components/ui/PinnedModal.tsx +++ b/src/components/ui/PinnedModal.tsx @@ -63,7 +63,7 @@ const SortableItem = ({ ref={setNodeRef} style={style} {...attributes} - className={`mb-2 flex items-center justify-between rounded-md border border-[#3A3745] px-4 py-2 pl-2 shadow-sm ${ + className={`mb-2 flex items-center justify-between rounded-2xl border border-[#3A3745] px-2 py-1 pl-2 shadow-sm ${ isDragging ? "scale-[1.02] cursor-grabbing opacity-90" : "cursor-grab" }`} > @@ -188,7 +188,7 @@ const PinnedModal = ({ }} > {page === "Navbar" ? ( - + {triggerName} @@ -214,7 +214,7 @@ const PinnedModal = ({
-
+
{displayPapers.length > 0 ? ( { value={searchText} onChange={(e) => setSearchText(e.target.value)} placeholder="Search by subject..." - className={`text-md rounded-lg bg-[#B2B8FF] px-4 py-6 pr-10 font-play tracking-wider text-black shadow-sm ring-0 placeholder:text-black focus:outline-none focus:ring-0 dark:bg-[#7480FF66] dark:text-white placeholder:dark:text-white ${suggestions.length > 0 ? "rounded-b-none" : ""}`} + className={`text-md rounded-2xl bg-[#B2B8FF] px-4 py-6 pr-10 font-play tracking-wider text-black shadow-sm ring-0 placeholder:text-black focus:outline-none focus:ring-0 dark:bg-[#7480FF66] dark:text-white placeholder:dark:text-white ${suggestions.length > 0 ? "rounded-b-none" : ""}`} />