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 @@ -32,7 +32,7 @@ export function DiffStatsIndicator({
}

return (
<Flex align="center" gap="2">
<Flex align="center" gap="2" style={{ whiteSpace: "nowrap" }}>
<Text
size="1"
style={{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,12 @@ function ModeAndBranchRow({
}

return (
<Flex align="center" justify="between" style={{ overflow: "hidden" }}>
<Flex
align="center"
justify="between"
gap="3"
style={{ overflow: "hidden" }}
>
<Flex align="center" gap="2" flexShrink="0">
{isBashMode ? (
<Text
Expand All @@ -89,7 +94,12 @@ function ModeAndBranchRow({
</>
)}
</Flex>
<Flex align="center" gap="2" style={{ minWidth: 0, overflow: "hidden" }}>
<Flex
align="center"
gap="2"
wrap="nowrap"
style={{ minWidth: 0, overflow: "hidden" }}
>
<DiffStatsIndicator
repoPath={repoPath}
overrideStats={cloudDiffStats}
Expand Down
Loading