fix: remove shadow for bordered main container (#7655)

fix PD-1498
This commit is contained in:
pengx17
2024-07-30 11:38:23 +00:00
parent 482b5da02f
commit d80c80ecdd
2 changed files with 4 additions and 4 deletions

View File

@@ -43,11 +43,14 @@ export const splitViewPanel = style({
},
'[data-client-border="false"] &:not([data-is-last="true"]):not([data-is-dragging="true"])':
{
borderRight: `1px solid ${cssVar('borderColor')}`,
borderRight: `0.5px solid ${cssVar('borderColor')}`,
},
'&[data-is-dragging="true"]': {
zIndex: 1,
},
'[data-client-border="true"] &': {
border: `0.5px solid ${cssVar('borderColor')}`,
},
},
});