Skip to content

Commit

Permalink
fix: JSON view CSS fixes (#435)
Browse files Browse the repository at this point in the history
  • Loading branch information
praveen5959 authored Jan 27, 2025
1 parent 377690e commit e91027f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
7 changes: 6 additions & 1 deletion src/pages/Stream/Views/Explore/JSONView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,12 @@ const Row = (props: {

return (
<Stack
style={{ flexDirection: 'row', background: isRowHighlighted ? '#E8EDFE' : 'white' }}
style={{
flexDirection: 'row',
background: isRowHighlighted ? '#E8EDFE' : 'white',
paddingLeft: showEllipses ? '5px' : '',
gap: showEllipses ? '5px' : '',
}}
className={classes.rowContainer}
gap={0}>
{showEllipses && (
Expand Down
3 changes: 1 addition & 2 deletions src/pages/Stream/styles/JSONView.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@
}

.actionIconContainer {
position: absolute;
left: 0px;
height: fit-content;
cursor: pointer;
padding: 1px 0px;
border-radius: 4px;
Expand Down

0 comments on commit e91027f

Please sign in to comment.