Skip to content

Commit 2b19ed7

Browse files
committed
fix bottom border for frozen columns
1 parent c6e1694 commit 2b19ed7

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

src/components/BrowserCell/BrowserCell.react.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -638,6 +638,7 @@ export default class BrowserCell extends Component {
638638
style.left = this.props.stickyLeft;
639639
style.zIndex = 1;
640640
style.background = this.props.rowBackground;
641+
style.borderBottom = '1px solid #e3e3ea';
641642
}
642643

643644
return (

src/components/BrowserRow/BrowserRow.react.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,13 @@ export default class BrowserRow extends Component {
8181
onMouseOver={() => onMouseOverRowCheckBox(obj.id)}
8282
style={
8383
freezeIndex >= 0
84-
? { position: 'sticky', left: 0, zIndex: 1, background: rowBackground }
84+
? {
85+
position: 'sticky',
86+
left: 0,
87+
zIndex: 1,
88+
background: rowBackground,
89+
borderBottom: '1px solid #e3e3ea',
90+
}
8591
: {}
8692
}
8793
>

0 commit comments

Comments
 (0)