Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
0f72b5e
Demo Page setup and Fixed Alerts in design-language
Developing-Gamer Feb 5, 2026
b1bdcd2
Theme Toggle transition
Developing-Gamer Feb 5, 2026
8282871
Update ring styles in GlassCard and ListItemRow components for improv…
Developing-Gamer Feb 6, 2026
8f3ffcc
Update sidebar layout styles for improved hover effects and backgroun…
Developing-Gamer Feb 6, 2026
2699151
Enhance UI consistency and styling across components, including updat…
Developing-Gamer Feb 6, 2026
fda8e26
Refactor UI components for improved styling and layout consistency. K…
Developing-Gamer Feb 9, 2026
9645d5a
Fixes
Developing-Gamer Feb 9, 2026
dd7671a
Removed glassmorphism from stack companion
Developing-Gamer Feb 9, 2026
807bb71
Update color variables in globals.css for improved accessibility and …
Developing-Gamer Feb 9, 2026
38d585f
Update sidebar layout to improve responsiveness by adjusting padding …
Developing-Gamer Feb 10, 2026
610cb26
Card component created (#1169)
Developing-Gamer Feb 11, 2026
ffc0980
Merge branch 'emails-redesign' into Lightmode
Developing-Gamer Feb 11, 2026
ef53c7f
Fixes
Developing-Gamer Feb 11, 2026
8c54b3b
Merge branch 'emails-redesign' into Lightmode
Developing-Gamer Feb 11, 2026
0b08b97
lint errors fixed
Developing-Gamer Feb 11, 2026
cf07d65
- show code on playground
N2D4 Feb 11, 2026
0e35240
Fix
N2D4 Feb 11, 2026
632a342
Enhance playground and editable-grid components
Developing-Gamer Feb 11, 2026
0acbe56
Refactor editable components to align with design language
Developing-Gamer Feb 11, 2026
17d4df7
Enhance page styling and structure for stack handler
Developing-Gamer Feb 11, 2026
c473e50
Merge branch 'emails-redesign' into Lightmode
Developing-Gamer Feb 11, 2026
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
Prev Previous commit
Next Next commit
Removed glassmorphism from stack companion
  • Loading branch information
Developing-Gamer committed Feb 9, 2026
commit dd7671af6cc88b66c5935077fcfc236a2a8b3617
8 changes: 4 additions & 4 deletions apps/dashboard/src/components/stack-companion.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ export function StackCompanion({ className }: { className?: string }) {
style={{ opacity: contentOpacity }}
>
{/* Header */}
<div className="flex items-center justify-between px-5 py-4 border-b border-black/[0.06] dark:border-foreground/[0.06] shrink-0 bg-white/55 dark:bg-background/40">
<div className="flex items-center justify-between px-5 py-4 border-b border-black/[0.06] dark:border-foreground/[0.06] shrink-0 bg-white dark:bg-background/40">
<div className="flex items-center gap-2.5">
{currentItem && (
<>
Expand Down Expand Up @@ -443,7 +443,7 @@ export function StackCompanion({ className }: { className?: string }) {
>
{/* The Handle Pill */}
<div className={cn(
"flex flex-col items-center gap-3 px-2 py-3 bg-white/55 dark:bg-foreground/[0.03] dark:backdrop-blur-xl border border-black/[0.06] dark:border-foreground/5 shadow-md transition-all duration-300 select-none",
"flex flex-col items-center gap-3 px-2 py-3 bg-white dark:bg-foreground/[0.03] dark:backdrop-blur-xl border border-black/[0.06] dark:border-foreground/5 shadow-md transition-all duration-300 select-none",
// Only show grab cursor when an item is selected (drawer can be resized)
activeItem && "cursor-grab active:cursor-grabbing",
// Shape morphing
Expand Down Expand Up @@ -515,7 +515,7 @@ export function StackCompanion({ className }: { className?: string }) {
{showDrawerContainerSplit && (
<div
className={cn(
"h-full bg-white/55 dark:bg-foreground/5 dark:backdrop-blur-xl border border-black/[0.06] dark:border-foreground/5 overflow-hidden relative rounded-2xl shadow-md",
"h-full bg-white dark:bg-foreground/5 dark:backdrop-blur-xl border border-black/[0.06] dark:border-foreground/5 overflow-hidden relative rounded-2xl shadow-md",
isAnimating && !isResizing && "transition-[width] duration-300 ease-out"
)}
style={{ width: drawerWidth }}
Expand Down Expand Up @@ -545,7 +545,7 @@ export function StackCompanion({ className }: { className?: string }) {
{showDrawerContainer && (
<div
className={cn(
"h-full overflow-hidden pointer-events-auto relative bg-white/55 dark:bg-background/80 dark:backdrop-blur-xl border-l border-black/[0.06] dark:border-foreground/[0.08] shadow-2xl",
"h-full overflow-hidden pointer-events-auto relative bg-white dark:bg-background/80 dark:backdrop-blur-xl border-l border-black/[0.06] dark:border-foreground/[0.08] shadow-2xl",
isAnimating && !isResizing && "transition-[width] duration-300 ease-out"
)}
style={{ width: drawerWidth }}
Expand Down