Skip to content

Commit

Permalink
fix(issue-details): Minor style fixes (#81074)
Browse files Browse the repository at this point in the history
Section headings margin adjustments:
<img width="1180" alt="image"
src="https://github.com/user-attachments/assets/9f4986d4-ec33-43c1-8cd9-494d42154431">


Align headers in/out of drawers:
<img width="603" alt="image"
src="https://github.com/user-attachments/assets/596488d6-a6e4-4715-8867-6ef3b8c5dbe2">
  • Loading branch information
leeandher authored and andrewshie-sentry committed Dec 2, 2024
1 parent c8bfef0 commit 9121cfa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion static/app/views/issueDetails/streamline/eventTitle.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ const EventInfoJumpToWrapper = styled('div')`
@media (min-width: ${p => p.theme.breakpoints.small}) {
flex-wrap: nowrap;
}
box-shadow: ${p => p.theme.translucentBorder} 0 1px;
border-bottom: 1px solid ${p => p.theme.translucentBorder};
`;

const EventInfo = styled('div')`
Expand Down
3 changes: 2 additions & 1 deletion static/app/views/issueDetails/streamline/foldSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,8 @@ const SectionExpander = styled('div')<{preventCollapse: boolean}>`
display: grid;
grid-template-columns: 1fr auto;
align-items: center;
padding: ${space(1)} ${space(0.75)};
padding: ${space(0.5)} ${space(1.5)};
margin: 0 -${space(0.75)};
border-radius: ${p => p.theme.borderRadius};
cursor: ${p => (p.preventCollapse ? 'initial' : 'pointer')};
position: relative;
Expand Down

0 comments on commit 9121cfa

Please sign in to comment.