Skip to content
This repository was archived by the owner on May 13, 2025. It is now read-only.

Commit e91027f

Browse files
authored
fix: JSON view CSS fixes (#435)
1 parent 377690e commit e91027f

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

src/pages/Stream/Views/Explore/JSONView.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,12 @@ const Row = (props: {
9090

9191
return (
9292
<Stack
93-
style={{ flexDirection: 'row', background: isRowHighlighted ? '#E8EDFE' : 'white' }}
93+
style={{
94+
flexDirection: 'row',
95+
background: isRowHighlighted ? '#E8EDFE' : 'white',
96+
paddingLeft: showEllipses ? '5px' : '',
97+
gap: showEllipses ? '5px' : '',
98+
}}
9499
className={classes.rowContainer}
95100
gap={0}>
96101
{showEllipses && (

src/pages/Stream/styles/JSONView.module.css

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@
1515
}
1616

1717
.actionIconContainer {
18-
position: absolute;
19-
left: 0px;
18+
height: fit-content;
2019
cursor: pointer;
2120
padding: 1px 0px;
2221
border-radius: 4px;

0 commit comments

Comments
 (0)