Skip to content
Open
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
17 changes: 17 additions & 0 deletions frontend/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -531,3 +531,20 @@ input::-webkit-credentials-type-password-toggle {
--text-muted: #94a3b8;
--border: #334155;
}
/* Custom scrollbar for Quick Notes panel */
.notes-scroll::-webkit-scrollbar {
width: 6px;
}

.notes-scroll::-webkit-scrollbar-track {
background: transparent;
}

.notes-scroll::-webkit-scrollbar-thumb {
background-color: var(--border);
border-radius: 999px;
}

.notes-scroll::-webkit-scrollbar-thumb:hover {
background-color: var(--primary);
}
3 changes: 2 additions & 1 deletion frontend/src/pages/Tasks.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ export default function Tasks() {
{isNotesOpen && (
<>
{/* Mobile View - No Overlap */}
<div className="block md:hidden w-full mt-4">
<div className="block md:hidden w-full mt-4 max-h-[50vh] overflow-y-auto notes-scroll">
<NotesWidget />
</div>

Expand All @@ -288,6 +288,7 @@ export default function Tasks() {
bg-white dark:bg-slate-900
shadow-2xl rounded-2xl overflow-hidden
border border-gray-100 dark:border-slate-800
max-h-[70vh] overflow-y-auto notes-scroll
"
>
<NotesWidget />
Expand Down