Skip to content

Commit 88d98ce

Browse files
authored
fix(feedback): Fix checkbox alignment in feedback list (#95840)
**Before** <img width="223" height="310" alt="SCR-20250717-nlui" src="https://github.com/user-attachments/assets/74caa44e-a9a4-444d-9d3a-d6d55ea8bc32" /> **After** <img width="241" height="346" alt="SCR-20250717-nllc" src="https://github.com/user-attachments/assets/e006f6bf-dfca-43ac-9419-9a7fc9431a7d" /> Fixes REPLAY-525
1 parent 3110d57 commit 88d98ce

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

static/app/components/feedback/list/feedbackListHeader.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,11 +96,12 @@ const HeaderPanel = styled('div')`
9696
`;
9797

9898
const HeaderPanelItem = styled('div')`
99-
padding: ${space(1)} ${space(1.5)} ${space(1)} 18px;
99+
padding: ${space(1)} ${space(1.5)} ${space(1)} ${space(2)};
100100
display: flex;
101101
gap: ${space(1)};
102102
align-items: center;
103-
border-bottom: 1px solid ${p => p.theme.innerBorder};
103+
border: 1px solid transparent;
104+
border-bottom-color: ${p => p.theme.innerBorder};
104105
`;
105106

106107
const RefreshContainer = styled('div')`

0 commit comments

Comments
 (0)