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
5 changes: 5 additions & 0 deletions .changeset/new-keys-drop.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@shipfox/react-ui": minor
---

Add button group, command, kbd, select, search, and skeleton components
48 changes: 48 additions & 0 deletions libs/react/ui/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -968,3 +968,51 @@
.shiny-text.disabled {
animation: none;
}

/* Custom Scrollbar Styles */
.scrollbar {
scrollbar-width: thin;
scrollbar-color: var(--border-neutral-base) transparent;
}

.scrollbar::-webkit-scrollbar {
width: 4px;
height: 4px;
}

.scrollbar::-webkit-scrollbar-track {
background: transparent;
margin: 8px 0;
}

.scrollbar::-webkit-scrollbar-thumb {
background-color: var(--border-neutral-base);
border-radius: 8px;
}

.scrollbar::-webkit-scrollbar-thumb:hover {
background-color: var(--border-neutral-strong);
}

/* Dark mode scrollbar */
.dark .scrollbar {
scrollbar-color: var(--border-neutral-strong) transparent;
}

.dark .scrollbar::-webkit-scrollbar-thumb {
background-color: var(--border-neutral-strong);
}

.dark .scrollbar::-webkit-scrollbar-thumb:hover {
background-color: var(--border-neutral-strong);
}

/* Hide scrollbar variant */
.scrollbar-hidden {
scrollbar-width: none;
-ms-overflow-style: none;
}

.scrollbar-hidden::-webkit-scrollbar {
display: none;
}
1 change: 1 addition & 0 deletions libs/react/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
"@remixicon/react": "^4.6.0",
"canvas-confetti": "^1.9.4",
"class-variance-authority": "^0.7.1",
"cmdk": "^1.1.1",
"clsx": "^2.1.1",
"framer-motion": "^12.23.24",
"gsap": "^3.13.0",
Expand Down
Loading
Loading