Skip to content

Commit 1a34aff

Browse files
authored
feat(replay): Fix resize split pane breaks network tabs (#102915)
This fixes a bug with the details split pane where the resize cursor gets stuck as enabled and you cant click the network detail tabs. I've removed the padding which seems to be the main cause. Before <img width="759" height="69" alt="image" src="https://github.com/user-attachments/assets/e6fed3c3-0d75-4a55-89bc-66a4779c3109" /> After <img width="683" height="53" alt="image" src="https://github.com/user-attachments/assets/26c00b6c-ce04-4a7c-afc6-4d79b6ce0e2e" />
1 parent 80bbe2e commit 1a34aff

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

static/app/components/replays/virtualizedGrid/detailsSplitDivider.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,6 @@ const CloseButtonWrapper = styled('div')`
6363
`;
6464

6565
const StyledSplitDivider = styled(SplitDivider)`
66-
padding: ${space(0.75)};
67-
6866
:hover,
6967
&[data-is-held='true'] {
7068
z-index: ${p => p.theme.zIndex.initial};

static/app/views/replays/detail/network/details/tabs.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,6 @@ function NetworkDetailsTabs() {
3636
}
3737

3838
const TabsContainer = styled('div')`
39-
padding-top: ${space(0.5)};
40-
padding-inline: ${space(1.5)};
4139
border-bottom: 1px solid ${p => p.theme.border};
4240
`;
4341

0 commit comments

Comments
 (0)