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
Original file line number Diff line number Diff line change
Expand Up @@ -171,12 +171,12 @@ export function GroupStrip() {
}, []);

return (
<div className="flex items-center h-10 flex-1 min-w-0">
<div
className="flex items-center h-10 flex-1 min-w-0 overflow-x-auto overflow-y-hidden"
style={{ scrollbarWidth: "none" }}
>
{tabs.length > 0 && (
<div
className="flex items-center h-full overflow-x-auto overflow-y-hidden border-l border-border"
style={{ scrollbarWidth: "none" }}
>
<div className="flex items-center h-full shrink-0 border-l border-border">
{tabs.map((tab, index) => {
const isPrevOfActive = index === activeTabIndex - 1;
const isNextOfActive = index === activeTabIndex + 1;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export function NewTabDropZone({
ref={(node) => {
drop(node);
}}
className="relative flex items-center h-full flex-1 min-w-0 pl-2"
className="relative flex items-center h-full shrink-0 pl-2"
>
{isOver && canDrop && (
<div className="absolute left-0 top-0 bottom-0 w-1 bg-primary/20" />
Expand Down
Loading