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
20 changes: 20 additions & 0 deletions src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -561,6 +561,26 @@
}
/* Editor Styles */

/* Thicker horizontal scrollbar for data tables */
.data-table-scroll {
scrollbar-width: thin;
scrollbar-color: #cbd5e1 #f1f5f9;
}
Comment on lines +564 to +568
Copy link

Copilot AI Mar 6, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The comment says this makes the horizontal scrollbar “Thicker”, but scrollbar-width: thin makes it thinner in Firefox. Either adjust the comment to match the implementation, or change the Firefox scrollbar setting if the intent is genuinely a thicker scrollbar there too.

Copilot uses AI. Check for mistakes.
.data-table-scroll::-webkit-scrollbar {
height: 8px;
}
.data-table-scroll::-webkit-scrollbar-track {
background: #f1f5f9;
border-radius: 4px;
}
.data-table-scroll::-webkit-scrollbar-thumb {
background: #cbd5e1;
border-radius: 4px;
}
.data-table-scroll::-webkit-scrollbar-thumb:hover {
background: #94a3b8;
}

input
/* Change the white to any color */
input:-webkit-autofill,
Expand Down
Loading